#include <gxPanel.h>
Public Member Functions | |
gxPanel () | |
virtual | ~gxPanel () |
virtual int | activate (long parent)=0 |
Activate that panel as a child of the specified window. | |
virtual int | deactivate ()=0 |
Deactivate the panel. | |
virtual int | getRequiredWidth ()=0 |
Returns the width required by the panel GUI. | |
virtual int | getRequiredLength ()=0 |
Returns the width required by the panel GUI. | |
virtual std::string | getTitle ()=0 |
Returns the title of the panel. | |
virtual std::string | getDocString ()=0 |
Returns the documentation string (if any) for the panel. | |
virtual std::string | getHelpFile ()=0 |
Returns the path to a windows help file (if any) for the panel. |
When a filter or other component has a GUI, it provides an implementation of gxPanel. The application then activates the gxPanel as a child of the appropriate window in the application framework to display the GUI.
|
|
|
|
|
Activate that panel as a child of the specified window. This creates and displays the panel GUI. |
|
Deactivate the panel. This destroys the panel GUI. |
|
Returns the documentation string (if any) for the panel.
|
|
Returns the path to a windows help file (if any) for the panel.
|
|
Returns the width required by the panel GUI. An application can use this information to resize the parent window before activating the panel. |
|
Returns the width required by the panel GUI. An application can use this information to resize the parent window before activating the panel. |
|
Returns the title of the panel.
|