aboutsummaryrefslogtreecommitdiff
path: root/src/root.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/root.h')
-rw-r--r--src/root.h65
1 files changed, 65 insertions, 0 deletions
diff --git a/src/root.h b/src/root.h
new file mode 100644
index 0000000..b546156
--- /dev/null
+++ b/src/root.h
@@ -0,0 +1,65 @@
+/**
+ * @file root.h
+ * @author Joe Wingbermuehle
+ * @date 2004-2006
+ *
+ * @brief Header for the root menu functions.
+ *
+ */
+
+#ifndef ROOT_H
+#define ROOT_H
+
+struct Menu;
+
+/*@{*/
+void InitializeRootMenu();
+void StartupRootMenu();
+void ShutdownRootMenu();
+void DestroyRootMenu();
+/*@}*/
+
+/** Set the root menu to be used for the specified indexes.
+ * @param indexes The indexes (ASCII string of '0' to '9').
+ * @param m The menu to use for the specified indexes.
+ */
+void SetRootMenu(const char *indexes, struct Menu *m);
+
+/** Set whether a confirmation dialog is displayed on exit.
+ * @param v 1 to display confirmation, 0 to just exit.
+ */
+void SetShowExitConfirmation(int v);
+
+/** Determine if a root menu is defined for the specified index.
+ * @return 1 if it is defined, 0 if not.
+ */
+int IsRootMenuDefined(int index);
+
+/** Get the size of a root menu.
+ * @param index The root menu index.
+ * @param width The width output.
+ * @param height The height output.
+ */
+void GetRootMenuSize(int index, int *width, int *height);
+
+/** Show a root menu.
+ * @param index The root menu index.
+ * @param x The x-coordinate.
+ * @param y The y-coordinate.
+ * @return 1 if a menu was displayed, 0 if not.
+ */
+int ShowRootMenu(int index, int x, int y);
+
+/** Run a command.
+ * @param command The command to run (run in sh).
+ */
+void RunCommand(const char *command);
+
+/** Restart the window manager. */
+void Restart();
+
+/** Exit the window manager. */
+void Exit();
+
+#endif
+