solang-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Solang-devel] [PATCH] Date View


From: Debarshi Ray
Subject: Re: [Solang-devel] [PATCH] Date View
Date: Sun, 24 May 2009 21:03:40 +0530

Merged and pushed.

~~~~
diff --git a/src/attribute/date-manager.h b/src/attribute/date-manager.h
new file mode 100644
index 0000000..b47b583
--- /dev/null
+++ b/src/attribute/date-manager.h
[...]
+class DateManager :
+    public Plugin
+{
+public:
+    DateManager() throw();
+
+    virtual
+    ~DateManager() throw();
+
+    virtual void
+    init(Application & application) throw();
+
+    virtual void
+    final(Application & application) throw();
+
+    void
+    on_photos_changed() throw();
+
+protected:
+
+    ApplicationPtr application_;
+
+    Glib::RefPtr<Gtk::ActionGroup> actionGroup_;
+
+    Gtk::UIManager::ui_merge_id uiID_;
+
+    const std::string dockItemName_;
+
+    const Glib::ustring dockItemTitle_;
+
+    GdlDockItemBehavior dockItemBehaviour_;
+
+    GtkWidget * dockItem_;
+
+    Gtk::VBox vBox_;
+
+    Gtk::ScrolledWindow scrolledWindow_;
+
+    DateView dateView_;
+
+private:
+};
~~~~

Took the liberty to indent them by four spaces.

Happy hacking,
Debarshi
-- 
One reason that life is complex is that it has a real part and an
imaginary part.
    -- Andrew Koenig




reply via email to

[Prev in Thread] Current Thread [Next in Thread]