summaryrefslogtreecommitdiffstats
path: root/src/ui/dialog
diff options
context:
space:
mode:
authorKris De Gussem <kris.degussem@gmail.com>2012-01-17 22:05:47 +0000
committerKris <Kris.De.Gussem@hotmail.com>2012-01-17 22:05:47 +0000
commitd467a925ae802b411b0dac9e2b2cfd25ea0cb848 (patch)
treef188df9ebcec3754a7ad99c937bc7a8d02940feb /src/ui/dialog
parentmore header cleanup (diff)
downloadinkscape-d467a925ae802b411b0dac9e2b2cfd25ea0cb848.tar.gz
inkscape-d467a925ae802b411b0dac9e2b2cfd25ea0cb848.zip
documentation
(bzr r10899)
Diffstat (limited to 'src/ui/dialog')
-rw-r--r--src/ui/dialog/dialog.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/src/ui/dialog/dialog.h b/src/ui/dialog/dialog.h
index 0248461d1..225484709 100644
--- a/src/ui/dialog/dialog.h
+++ b/src/ui/dialog/dialog.h
@@ -48,9 +48,10 @@ void sp_dialog_shutdown(GtkObject *object, gpointer dlgPtr);
* showing and hiding all dialogs.
*
* Fundamental parts of the dialog's behavior are controlled by
- * a Dialog::Behavior subclass instance connected to the dialog.
+ * a UI::Dialog::Behavior subclass instance connected to the dialog.
*
- * @see UI::Widget::Panel
+ * @see UI::Widget::Panel panel class from which the dialogs are actually derived from.
+ * @see UI::Dialog::DialogManager manages the dialogs within inkscape.
*/
class Dialog {
@@ -59,9 +60,9 @@ public:
/**
* Constructor.
*
- * @param behavior_factory floating or docked
- * @param prefs_path characteristic path to load/save dialog position
- * @param verb_num the dialog verb
+ * @param behavior_factory floating or docked.
+ * @param prefs_path characteristic path for loading/saving dialog position.
+ * @param verb_num the dialog verb.
*/
Dialog(Behavior::BehaviorFactory behavior_factory, const char *prefs_path = NULL,
int verb_num = 0, Glib::ustring const &apply_label = "");
@@ -71,7 +72,7 @@ public:
virtual void onDesktopActivated(SPDesktop*);
virtual void onShutdown();
- /** Hide and show dialogs */
+ /* Hide and show dialogs */
virtual void onHideF12();
virtual void onShowF12();
@@ -99,7 +100,7 @@ public:
bool _hiddenF12;
/**
- * Load window position from preferences.
+ * Read window position from preferences.
*/
void read_geometry();