summaryrefslogtreecommitdiff
path: root/NxWidgets/libnxwidgets/include/cnxwidget.hxx
diff options
context:
space:
mode:
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.