summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/include/cnxwidget.hxx
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-09 19:31:48 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-05-09 19:31:48 +0000
commitd97899b6e2c22b4f33f23a8333a03cd323bcd45e (patch)
tree3275cf363a5ddb67c70108c4712f8903fb0b958c /NxWidgets/libnxwidgets/include/cnxwidget.hxx
parent0f72f7085182b9038e0037c3b949458ac3306fdc (diff)
downloadnuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.tar.gz
nuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.tar.bz2
nuttx-d97899b6e2c22b4f33f23a8333a03cd323bcd45e.zip
NxWidgets: Remove modal loops, Add CWindowEventHandler*. NxWM: Add support for full screen applications
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4716 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'NxWidgets/libnxwidgets/include/cnxwidget.hxx')
-rw-r--r--NxWidgets/libnxwidgets/include/cnxwidget.hxx24
1 files changed, 0 insertions, 24 deletions
diff --git a/NxWidgets/libnxwidgets/include/cnxwidget.hxx b/NxWidgets/libnxwidgets/include/cnxwidget.hxx
index d29830c0a..4c470cfb2 100644
--- a/NxWidgets/libnxwidgets/include/cnxwidget.hxx
+++ b/NxWidgets/libnxwidgets/include/cnxwidget.hxx
@@ -154,7 +154,6 @@ namespace NXWidgets
uint8_t visibleRegionCacheInvalid : 1; /**< True if the region cache is invalid. */
uint8_t hidden : 1; /**< True if the widget is hidden. */
uint8_t doubleClickable : 1; /**< True if the widget can be double-clicked. */
- uint8_t modal : 1; /**< True if the widget is modal. */
} Flags;
/**
@@ -565,14 +564,6 @@ namespace NXWidgets
}
/**
- * Is the widget modal? Only true if the Widget singleton is also modal.
- *
- * @return True if the widget is modal.
- */
-
- const bool isModal(void) const;
-
- /**
* Get the width of the widget.
*
* @return The widget width.
@@ -1298,21 +1289,6 @@ namespace NXWidgets
bool removeChild(CNxWidget *widget);
/**
- * Run the widget modally.
- */
-
- void goModal(void);
-
- /**
- * Stop the widget running modally.
- */
-
- inline void stopModal(void)
- {
- m_flags.modal = false;
- }
-
- /**
* Get the child widget at the specified index.
*
* @param index Index of the child to retrieve.