[Gpredict-svn] SF.net SVN: gpredict:[555] trunk
Real time satellite tracking and orbit prediction
Status: Beta
Brought to you by:
csete
From: <cs...@us...> - 2009-12-26 00:24:13
|
Revision: 555 http://gpredict.svn.sourceforge.net/gpredict/?rev=555&view=rev Author: csete Date: 2009-12-26 00:21:15 +0000 (Sat, 26 Dec 2009) Log Message: ----------- Updated. Modified Paths: -------------- trunk/ChangeLog trunk/src/sat-pref-layout.c Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2009-12-25 15:16:44 UTC (rev 554) +++ trunk/ChangeLog 2009-12-26 00:21:15 UTC (rev 555) @@ -1,3 +1,9 @@ +2009-12-25 Alexandru Csete <oz9aec at gmail.com> + + * pixmaps/icons: + Added thumbnails for predefined layouts. + + 2009-12-24 Alexandru Csete <oz9aec at gmail.com> * data/satdata: @@ -2,3 +8,3 @@ * data/trsp: - Added TLE and transponder data for XW-1 / HO68. + Added TLE and transponder data for XW-1 / HO-68. Modified: trunk/src/sat-pref-layout.c =================================================================== --- trunk/src/sat-pref-layout.c 2009-12-25 15:16:44 UTC (rev 554) +++ trunk/src/sat-pref-layout.c 2009-12-26 00:21:15 UTC (rev 555) @@ -61,7 +61,22 @@ static void layout_code_changed (GtkWidget *widget, gpointer data); +#define PREDEF_NUM 10 +gchar *predef_layout[PREDEF_NUM][3] = { + { "1;0;2;0;1;2;0;1;1;2;3;1;2;1;2", N_("World map, polar and single sat (default)"), "gpredict-layout-00.png" }, + { "1;0;2;0;1", N_("World map"), "gpredict-layout-01.png" }, + { "1;0;2;0;1", N_("Table"), "gpredict-layout-02.png" }, + { "1;0;2;0;2;0;0;2;2;3", N_("World map and table"), "gpredict-layout-03.png" }, + { "2;0;1;0;1;3;1;2;0;1", N_("Polar and single sat"), "gpredict-layout-04.png" }, + { "2;0;1;0;1;4;1;2;0;1", N_("Polar and upcoming passes"), "gpredict-layout-05.png" }, + { "1;0;3;0;4;0;0;3;4;6;2;0;1;6;8;3;1;2;6;8;4;2;3;6;8", N_("All views (narrow)"), "gpredict-layout-06.png" }, + { "1;0;3;0;3;0;0;3;3;4;2;3;4;0;2;4;3;4;2;3;3;3;4;3;4", N_("All views (wide)"), "gpredict-layout-07.png"}, + { "1;0;3;0;3;0;0;3;3;4;2;3;4;0;2;3;3;4;2;4", N_("Map, table, polar and single sat (wide)"), "gpredict-layout-08.png"}, + { "", N_("Custom"), "gpredict-layout-99.png" } +}; + + /** \brief Create and initialise widgets for the layout view preferences tab. * * The widgets must be preloaded with values from config. If a config value This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |