[Goodies-commits] r1791 - in xfce4-notes-plugin/trunk: . panel-plugin

Mike Massonnet mmassonnet at xfce.org
Mon Jul 24 23:40:44 CEST 2006


Author: mmassonnet
Date: 2006-07-24 21:40:42 +0000 (Mon, 24 Jul 2006)
New Revision: 1791

Modified:
   xfce4-notes-plugin/trunk/ChangeLog
   xfce4-notes-plugin/trunk/NEWS
   xfce4-notes-plugin/trunk/README
   xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
   xfce4-notes-plugin/trunk/panel-plugin/notes.c
Log:
 * Fix window size issue
 * Updated some NEW/README/... files



Modified: xfce4-notes-plugin/trunk/ChangeLog
===================================================================
--- xfce4-notes-plugin/trunk/ChangeLog	2006-07-24 20:03:53 UTC (rev 1790)
+++ xfce4-notes-plugin/trunk/ChangeLog	2006-07-24 21:40:42 UTC (rev 1791)
@@ -1,3 +1,5 @@
++ 2006/07/24    mmassonnet
+    - Fix a bug with the window size
 + 2006/07/24	mmassonnet
 	- Support multiple notes through a notebook
 	- Options: always on top, sticky, show at startup, show in task switcher

Modified: xfce4-notes-plugin/trunk/NEWS
===================================================================
--- xfce4-notes-plugin/trunk/NEWS	2006-07-24 20:03:53 UTC (rev 1790)
+++ xfce4-notes-plugin/trunk/NEWS	2006-07-24 21:40:42 UTC (rev 1791)
@@ -1 +1 @@
-See ChangeLog for Xfce<=4.2
+See ChangeLog

Modified: xfce4-notes-plugin/trunk/README
===================================================================
--- xfce4-notes-plugin/trunk/README	2006-07-24 20:03:53 UTC (rev 1790)
+++ xfce4-notes-plugin/trunk/README	2006-07-24 21:40:42 UTC (rev 1791)
@@ -1,18 +1,24 @@
 
-This is a notes applet for the Xfce panel. Notes here meaning sticky 
-notes, where you can plot down quick reminders.
+The notes plugin provides you a simple text editor in a little window for the 
+Xfce 4.4 desktop.  Notes are especially useful for temporary stuff.
 
-A new note is created by clicking with mouse button 3 and notes can
-be made visible or not by clicking with mouse button 1.
+A note is created by clicking on the upper left corner button of the window.
 
-Xfce homepage:  http://www.xfce.org
-Notes homepage: /* FIXME */
+Xfce homepage:
+    - http://www.xfce.org
+Notes homepage: 
+    - http://goodies.xfce.org/projects/panel-plugins/xfce4-notes-plugin
 
 INSTALL:
-	tar xf xfce-notes-<version-number>.tar.gz
-	./autogen.sh
+	tar xf xfce4-notes-plugin-<version-number>.tar.gz
+	./configure
 	make
 	make install
 
+    See the file INSTALL for more instructions.
+
 QUESTIONS:
 	Send an e-mail to <mmassonnet at gmail.com>
+    You can also join the Xfce goodies mailing-list:
+        - http://foo-projects.org/mailman/listinfo/goodies-dev
+

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes-window.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-07-24 20:03:53 UTC (rev 1790)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes-window.c	2006-07-24 21:40:42 UTC (rev 1791)
@@ -57,6 +57,7 @@
     /* Window */
     note->window = gtk_window_new (GTK_WINDOW_TOPLEVEL);
 
+    gtk_window_set_title (GTK_WINDOW (note->window), _("Notes"));
     gtk_window_set_default_size (GTK_WINDOW (note->window), 242, 200);
     gtk_window_set_decorated (GTK_WINDOW (note->window), FALSE);
     gtk_window_set_icon_name (GTK_WINDOW (note->window), GTK_STOCK_EDIT);

Modified: xfce4-notes-plugin/trunk/panel-plugin/notes.c
===================================================================
--- xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-07-24 20:03:53 UTC (rev 1790)
+++ xfce4-notes-plugin/trunk/panel-plugin/notes.c	2006-07-24 21:40:42 UTC (rev 1791)
@@ -324,8 +324,8 @@
       {
         gtk_window_get_position (GTK_WINDOW (notes->note->window),
                                  &notes->note->x, &notes->note->y);
-        gtk_window_get_default_size (GTK_WINDOW (notes->note->window),
-                                     &notes->note->w, &notes->note->h);
+        gtk_window_get_size (GTK_WINDOW (notes->note->window), &notes->note->w, 
+                             &notes->note->h);
 
         gtk_widget_hide (notes->note->window);
       }




More information about the Goodies-commits mailing list