Code

use correct method of accessing top-level window for transientization
[inkscape.git] / src / widgets / calligraphic-profile-rename.h
old mode 100755 (executable)
new mode 100644 (file)
index f0e455c..53ce907
@@ -1,12 +1,10 @@
-/**
- *
- * \brief  Dialog for naming calligraphic profiles
- *
- * Author:
+/** @file
+ * @brief Dialog for naming calligraphic profiles
+ */
+/* Author:
  *   Aubanel MONNIER 
  *
- * Copyright (C) 2007 Aubanel MONNIER
- *
+ * Copyright (C) 2007 Authors
  * Released under GNU GPL.  Read the file 'COPYING' for more information
  */
 
 struct SPDesktop;
 
 namespace Inkscape {
-  namespace UI {
-    namespace Dialogs {
+namespace UI {
+namespace Dialog {
       
-      class  CalligraphicProfileDialog: public Gtk::Dialog {  
-      public:
-       CalligraphicProfileDialog();
-       virtual ~CalligraphicProfileDialog(){} ;
-       static void show(SPDesktop *desktop);
-       static bool applied(){return instance()._applied;}
-       static Glib::ustring getProfileName() { return instance()._profile_name;}
-
-       Glib::ustring getName() const { return "CalligraphicProfileDialog"; }
+class CalligraphicProfileRename : public Gtk::Dialog {  
+public:
+    CalligraphicProfileRename();
+    virtual ~CalligraphicProfileRename() {}
+    Glib::ustring getName() const {
+        return "CalligraphicProfileRename";
+    }
+    
+    static void show(SPDesktop *desktop);
+    static bool applied() {
+        return instance()._applied;
+    }
+    static Glib::ustring getProfileName() {
+        return instance()._profile_name;
+    }
 
-       
-      protected:
-       void _close();
-       void _apply();
+protected:
+    void _close();
+    void _apply();
 
-       Gtk::Label        _profile_name_label;
-       Gtk::Entry        _profile_name_entry;
-       Gtk::Table        _layout_table;
-       Gtk::Button       _close_button;
-       Gtk::Button       _apply_button;
-       Glib::ustring _profile_name;
-       bool _applied;
-      private:
-       static CalligraphicProfileDialog &instance(){static CalligraphicProfileDialog instance; return instance;}
-       CalligraphicProfileDialog(CalligraphicProfileDialog const &); // no copy
-       CalligraphicProfileDialog &operator=(CalligraphicProfileDialog  const &); // no assign
-      };      
+    Gtk::Label        _profile_name_label;
+    Gtk::Entry        _profile_name_entry;
+    Gtk::Table        _layout_table;
+    Gtk::Button       _close_button;
+    Gtk::Button       _apply_button;
+    Glib::ustring _profile_name;
+    bool _applied;
+private:
+    static CalligraphicProfileRename &instance() {
+        static CalligraphicProfileRename instance_;
+        return instance_;
     }
-  }
-}
+    CalligraphicProfileRename(CalligraphicProfileRename const &); // no copy
+    CalligraphicProfileRename &operator=(CalligraphicProfileRename const &); // no assign
+};
+} // namespace Dialog
+} // namespace UI
+} // namespace Inkscape
 
 #endif // INKSCAPE_DIALOG_CALLIGRAPHIC_PROFILE_H
+
+/*
+  Local Variables:
+  mode:c++
+  c-file-style:"stroustrup"
+  c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
+  indent-tabs-mode:nil
+  fill-column:99
+  End:
+*/
+// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :