gnome-commander r2131 - in branches/gcmd-1-3: . src
- From: epiotr svn gnome org
- To: svn-commits-list gnome org
- Subject: gnome-commander r2131 - in branches/gcmd-1-3: . src
- Date: Mon, 29 Sep 2008 15:34:09 +0000 (UTC)
Author: epiotr
Date: Mon Sep 29 15:34:09 2008
New Revision: 2131
URL: http://svn.gnome.org/viewvc/gnome-commander?rev=2131&view=rev
Log:
notebook: added missing prev_page() and next_page()
Modified:
branches/gcmd-1-3/ChangeLog
branches/gcmd-1-3/src/gnome-cmd-notebook.h
Modified: branches/gcmd-1-3/src/gnome-cmd-notebook.h
==============================================================================
--- branches/gcmd-1-3/src/gnome-cmd-notebook.h (original)
+++ branches/gcmd-1-3/src/gnome-cmd-notebook.h Mon Sep 29 15:34:09 2008
@@ -49,14 +49,17 @@
int size() { return gtk_notebook_get_n_pages (*this); }
bool empty() { return size()==0; }
- GtkWidget *page() { return gtk_notebook_get_nth_page (*this, gtk_notebook_get_current_page (*this)); }
+ gint get_current_page() { return gtk_notebook_get_current_page (*this); }
+ void set_current_page(gint n) { gtk_notebook_set_current_page (*this, n); }
+
+ GtkWidget *page() { return gtk_notebook_get_nth_page (*this, get_current_page()); }
GtkWidget *page(gint n) { return gtk_notebook_get_nth_page (*this, n); }
gint insert_page(GtkWidget *page, gint n, const gchar *label=NULL);
gint prepend_page(GtkWidget *page, const gchar *label=NULL) { return insert_page(page, 0, label); }
gint append_page(GtkWidget *page, const gchar *label=NULL) { return insert_page(page, -1, label); }
- void remove_page() { gtk_notebook_remove_page (*this, gtk_notebook_get_current_page (*this)); }
+ void remove_page() { gtk_notebook_remove_page (*this, get_current_page()); }
void remove_page(gint n) { gtk_notebook_remove_page (*this, n); }
void set_label(const gchar *label=NULL);
@@ -84,4 +87,24 @@
gtk_notebook_set_tab_label (*this, page(n), label ? gtk_label_new (label) : NULL);
}
+inline void GnomeCmdNotebook::prev_page()
+{
+ if (get_current_page()>0)
+ gtk_notebook_prev_page (*this);
+ else
+ if (size()>1)
+ set_current_page(-1);
+}
+
+inline void GnomeCmdNotebook::next_page()
+{
+ int n = size();
+
+ if (get_current_page()+1<n)
+ gtk_notebook_next_page (*this);
+ else
+ if (n>1)
+ set_current_page(0);
+}
+
#endif // __GNOME_CMD_NOTEBOOK_H__
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]