Changeset 67 for trunk/src/gtk/MainView.h
- Timestamp:
- 04/15/06 10:40:50 (3 years ago)
- Files:
-
- 1 modified
-
trunk/src/gtk/MainView.h (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gtk/MainView.h
r64 r67 49 49 void showErrorMessage (const gchar *title, const gchar *body); 50 50 void showPage (DocumentPage *page); 51 void showSidebar (gboolean show); 51 52 void setTotalPages (gint pages); 52 53 void setGoToPageText (const gchar *text); … … 54 55 void getPageViewSize (gint *width, gint *height); 55 56 void setTitle (const gchar *title); 57 void setOutline (DocumentOutline *outline); 56 58 57 59 protected: … … 60 62 GtkWidget *m_MainWindow; 61 63 GtkWidget *m_MainBox; 64 GtkTreeStore *m_Outline; 62 65 GtkWidget *m_PageView; 63 66 GtkWidget *m_PageViewScroll; 67 GtkWidget *m_Sidebar; 64 68 gint m_TotalPages; 65 69 GtkUIManager *m_UIManager; 66 70 67 71 void createCurrentPage (void); 68 voidcreatePageView (void);72 GtkWidget *createPageView (void); 69 73 void createUIManager (void); 70 74 GdkPixbuf *getPixbufFromPage (DocumentPage *page); 71 75 void setMainWindowIcon (void); 76 void setOutlineChildren (DocumentOutline *outline, 77 GtkTreeIter *rootIter); 72 78 }; 73 79 }
