[Gpredict-svn] SF.net SVN: gpredict:[637] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2010-07-12 08:53:31
|
Revision: 637 http://gpredict.svn.sourceforge.net/gpredict/?rev=637&view=rev Author: csete Date: 2010-07-12 08:53:24 +0000 (Mon, 12 Jul 2010) Log Message: ----------- Allow docked modules to be reordered by dragging the tabs. Modified Paths: -------------- trunk/ChangeLog trunk/NEWS trunk/src/mod-mgr.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/ChangeLog 2010-07-12 08:53:24 UTC (rev 637) @@ -1,3 +1,9 @@ +2010-07-12 alexandru Csete >oz9aec at gmail.com> + + * src/mod-mgr.c: + Allow docked modules to be reordered by dragging the tabs. + + 2010-07-11 Alexandru Csete <oz9aec at gmail.com> * data/satdata: Modified: trunk/NEWS =================================================================== --- trunk/NEWS 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/NEWS 2010-07-12 08:53:24 UTC (rev 637) @@ -41,6 +41,7 @@ - Satellite Map: Added shadow to satellite marker and label to enhance visual appearance over light background map regions. - Fixed incorrect uplink and downlink frequencies for HO-68, mode V/U packet. +- Modules that are docked in the main window can be reordered by dragging the tabs. Changes in version 1.1 (5 Oct 2009) Modified: trunk/src/mod-mgr.c =================================================================== --- trunk/src/mod-mgr.c 2010-07-11 12:01:32 UTC (rev 636) +++ trunk/src/mod-mgr.c 2010-07-12 08:53:24 UTC (rev 637) @@ -202,6 +202,9 @@ module, gtk_label_new (GTK_SAT_MODULE (module)->name)); + /* allow nmodule to be dragged to different position */ + gtk_notebook_set_tab_reorderable (GTK_NOTEBOOK(nbook), module, TRUE); + gtk_notebook_set_current_page (GTK_NOTEBOOK (nbook), page); /* send message to logger */ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |