Changeset 231 for trunk/src/gtk/PrintView.h
- Timestamp:
- 06/13/06 15:16:36 (2 years ago)
- Files:
-
- 1 modified
-
trunk/src/gtk/PrintView.h (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gtk/PrintView.h
r222 r231 31 31 virtual void addPageSize (const gchar *name, 32 32 const gchar *value); 33 virtual void addPrinter (const gchar *name, int jobs,33 virtual void addPrinter (const gchar *name, gint jobs, 34 34 const gchar *state, 35 35 const gchar *location); 36 virtual void addResolution (const gchar *name, 37 const gchar *value); 36 38 virtual void clearPageSizeList (void); 37 virtual unsigned int getNumberOfCopies (void); 39 virtual void clearResolutionList (void); 40 virtual guint getNumberOfCopies (void); 38 41 virtual PrintPageLayout getPageLayout (void); 39 42 virtual PrintPageOrientation getPageOrientation (void); … … 45 48 virtual gboolean isSelectedEvenPageSet (void); 46 49 virtual gboolean isSelectedOddPageSet (void); 47 virtual void selectPageSize (unsigned int pageSizeIndex); 48 virtual void selectPrinter (unsigned int printerIndex); 50 virtual void selectPageSize (guint pageSizeIndex); 51 virtual void selectPrinter (guint printerIndex); 52 virtual void selectResolution (guint resolutionIndex); 49 53 virtual void sensitiveCollate (gboolean sensitive); 50 54 virtual void sensitivePageRange (gboolean sensitive); … … 68 72 GtkListStore *m_PrinterList; 69 73 GtkWidget *m_PrinterListView; 74 GtkListStore *m_Resolution; 75 GtkWidget *m_ResolutionView; 76 77 void addOptionToList (GtkListStore *optionList, 78 const gchar *name, const gchar *value); 79 void getOptionFromComboBox (GtkWidget *comboBox, gpointer value); 70 80 71 81 GtkWidget *createJobTab (void); … … 77 87 void createPageSizeListModel (void); 78 88 void createPrinterListModel (void); 89 void createResolutionListModel (void); 79 90 }; 80 91 }
