The Gnome Chemistry Utils 0.13.3
|
#include <gcu/window.h>
Public Member Functions | |
Window () | |
virtual | ~Window () |
virtual void | Destroy () |
virtual void | Show () |
GtkWindow * | GetWindow (void) |
Protected Attributes | |
GtkWindow * | m_Window |
Base class for windows. Just a placeholder for now.
Definition at line 37 of file gcu/window.h.
gcu::Window::Window | ( | ) |
The default constructor.
virtual gcu::Window::~Window | ( | ) | [virtual] |
The destructor.
Reimplemented in gcp::Window.
virtual void gcu::Window::Destroy | ( | ) | [virtual] |
Destroys the window. This method should be overloaded in derived classes since default imlementation does not do anything.
Reimplemented in gcp::Window.
gcu::Window::GetWindow | ( | void | ) | [inline] |
Definition at line 66 of file gcu/window.h.
virtual void gcu::Window::Show | ( | ) | [virtual] |
Raises the window and makes it active. This method should be overloaded in derived classes since default imlementation does not do anything.
Reimplemented in gcp::Window.
gcu::Window::m_Window [protected] |
The GtkWindow instance corresponding to the Window.
Definition at line 66 of file gcu/window.h.