Code

Cleanup of device internal handling and API.
[inkscape.git] / src / ui / dialog / aboutbox.h
index 50627b57dddc8df5c2c4938b1d48dd0c683cd384..622b1324fe031e2be0464f8e3ca2b168a1c88c82 100644 (file)
@@ -1,10 +1,10 @@
-/**
- * \brief About Widget - Adds the "about" doc to the Gnome::UI::About Class
+/** @file
+ * @brief Inkscape About box
  *
  * The standard Gnome::UI::About class doesn't include a place to stuff
  * a renderable View that holds the classic Inkscape "about.svg".
- *
- * Author:
+ */
+/* Author:
  *   Kees Cook <kees@outflux.net>
  *
  * Copyright (C) 2005 Kees Cook
@@ -22,12 +22,21 @@ namespace UI {
 namespace Dialog {
 
 class AboutBox : public Gtk::Dialog {
+
 public:
+
     static void show_about();
     static void hide_about();
 
 private:
+
     AboutBox();
+    
+    void initStrings();
+    
+    Glib::ustring authors_text;
+    Glib::ustring translators_text;
+    Glib::ustring license_text;
 
     virtual void on_response(int response_id);
 };