summaryrefslogtreecommitdiff
path: root/NxWidgets/nxwm/include/cnxstart.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'NxWidgets/nxwm/include/cnxstart.hxx')
-rw-r--r--NxWidgets/nxwm/include/cnxstart.hxx35
1 files changed, 34 insertions, 1 deletions
diff --git a/NxWidgets/nxwm/include/cnxstart.hxx b/NxWidgets/nxwm/include/cnxstart.hxx
index 42ea67b35..fbfb9c54b 100644
--- a/NxWidgets/nxwm/include/cnxstart.hxx
+++ b/NxWidgets/nxwm/include/cnxstart.hxx
@@ -56,6 +56,9 @@
namespace NxWM
{
+ class CNxTaskbar;
+ class CApplicationWindow;
+
class CNxStart : public INxApplication
{
protected:
@@ -71,9 +74,19 @@ namespace NxWM
/**
* CNxStart Constructor
+ *
+ * @param taskbar. A pointer to the parent task bar instance
+ * @param window. The window to be used by this application.
+ */
+
+ CNxStart(CNxTaskbar *taskbar, CApplicationWindow *window);
+
+ /**
+ * Each implementation of INxApplication must provide a method to recover
+ * the contained CApplicationWindow instance.
*/
- CNxStart(CNxTaskbar *taskbar);
+ CApplicationWindow *getWindow(void) const;
/**
* Get the icon associated with the application
@@ -86,6 +99,26 @@ namespace NxWM
NXWidgets::INxBitmap *getIcon(void);
/**
+ * Get the name string associated with the application
+ *
+ * @return A copy if CNxString that contains the name of the application.
+ */
+
+ NXWidgets::CNxString getName(void);
+
+ /**
+ * Start the application.
+ */
+
+ run(void);
+
+ /**
+ * Stop the application.
+ */
+
+ stop(void);
+
+ /**
* Add the application to the start window
*
* @param application. The new application to add to the start window