Commit Graph

420 Commits

Author SHA1 Message Date
36e89f3fe4 Create the GdMainView for the chart list
GdMainView doesn’t implement GtkBuildable yet, thus, it cannot be added
via the UI file.
2014-07-31 01:06:10 +02:00
809a1b215f Add libgd as a dependency and git submodule
libgd is required for GdMainView until MainView gets into Gtk (which I hope
will happen)
2014-07-31 01:05:23 +02:00
47fa484875 Add function ag_window_load_chart_list()
It loads all charts from the database and fills the main view’s list
store with it
2014-07-31 01:05:19 +02:00
e2606ea5eb Add list store model for the GdMainView 2014-07-31 01:03:49 +02:00
310caa9292 Add function ag_chart_new_from_db_save()
It constructs an AgChart from an AgDbSave struct
2014-07-31 01:00:22 +02:00
bee9ae363f Fix ag_db_select()
Using parameter @err for error collection was a bad idea. Creating
local_err instead.
2014-07-31 01:00:16 +02:00
ea9e4a73a5 Add function ag_db_get_chart_data_by_id()
It loads one single chart from the database and fills an AgDbSave
struct with its data
2014-07-31 01:00:03 +02:00
bfa4cf8cca Add AgDbError error type 2014-07-31 00:59:53 +02:00
8a654e9c0f Add function ag_db_get_chart_list() 2014-07-31 00:49:55 +02:00
e8d9386916 Add function ag_db_save_chart() to add/update charts in the database 2014-07-22 00:11:08 +02:00
98d08893ef Add struct AgDbSave together with the function ag_db_save_data_free() 2014-07-22 00:11:08 +02:00
f46e35430e Add note to example chart 2014-07-21 23:46:20 +02:00
4d718853ea Add TODO items 2014-07-21 23:46:20 +02:00
749a253f18 Code beautification in ag-chart.h 2014-07-21 23:46:20 +02:00
0fc41ba545 Add missing closing bracket in ag_db_non_select() 2014-07-21 23:46:09 +02:00
4d64e707bc Add AgDb class 2014-07-20 23:18:45 +02:00
fe25f5ce9d Remove unneeded UI_FILE #define
All UI code is now stored in GResources
2014-07-20 23:18:28 +02:00
d671500a1a Code beautification in xml_open_gresource() 2014-07-20 23:15:58 +02:00
cad657c1b1 Move AgChartPrivate to ag-chart.c completely 2014-07-19 10:46:41 +02:00
de4cc09354 Merge pull request #41 from gergelypolonkai/bug-23
Set month and day to 1, so warnings disappear
2014-07-18 23:06:32 +02:00
bc81187e8b Set month and day to 1, so warnings disappear
This is somewhat cosmetic, a better approach should be found.
Fixes #23
2014-07-18 23:05:40 +02:00
d23c7c42c4 Unset house system is now a critical error
Fixes #38
2014-07-18 22:33:58 +02:00
9ca605c9c4 Merge pull request #40 from gergelypolonkai/configure-house-system
Add default house system to preferences dialog. Fixes #36
2014-07-18 22:29:50 +02:00
46cb2b24a5 Add default house system to preferences dialog 2014-07-18 22:27:00 +02:00
0544932f14 Merge pull request #39 from gergelypolonkai/configure-house-system
Save house system; Add default house system to the settings schema
2014-07-18 20:55:20 +02:00
69bc58495c Set Edit tab’s house system to the default on startup 2014-07-18 20:49:35 +02:00
0ead40813b Rename ag_window_find_house_system() to ag_window_set_house_system() 2014-07-18 20:49:02 +02:00
de4e2f54ef Add default house system to settings schema
It is taken from an enum list, which is hand made. There must be a way
to generate it programatically at compile time…
2014-07-18 18:35:39 +02:00
bd277de1bc Add house system save functionality
This was missing from #37
2014-07-18 18:32:53 +02:00
427f915f62 Use enum nick instead of name in house system saving
This is easier to do, and the save file has that value already
2014-07-18 18:31:56 +02:00
74e8373dad Add missing g_free() call for house_system_enum_name in chart loading 2014-07-18 18:30:11 +02:00
08df34c809 Merge pull request #37 from gergelypolonkai/configure-house-system
Make house system configurable
2014-07-18 00:19:56 +02:00
71cc129e95 Now considering house system setting on the Edit tab 2014-07-18 00:15:20 +02:00
023b179457 House system GtkComboBox now indicates the loaded house system 2014-07-18 00:02:56 +02:00
fa6a850331 Add house system loading to chart load code 2014-07-18 00:02:56 +02:00
09d1fe352a Add the house system configuration widgets to the Edit tab
It is already filled with data, but it is not functional yet!
2014-07-18 00:02:56 +02:00
1ae2db0232 Add house system node to example chart 2014-07-17 23:12:50 +02:00
32de0afd67 Bump SWE-GLib version requirement to 2.1.0
gswe_all_house_systems() was added in 2.1.0, which is required for
house system functionality.
2014-07-17 23:12:50 +02:00
4e5b649173 Code beautification in ag_chart_load_from_file() 2014-07-17 23:11:24 +02:00
e745312ffe Remove err when checking for note in save file
Note is not required to be present in any save file. However,
get_by_xpath() sets err if it is not, which will never be checked for.
2014-07-17 23:11:24 +02:00
5671a751a9 Fix error messages in AgChart’s get_by_xpath() 2014-07-17 23:08:34 +02:00
183c0a00dc Remove unnecessary upper bound for year_adjust 2014-07-16 22:20:34 +02:00
4c2e20ab30 Update POTFILES.in 2014-07-15 16:44:13 +02:00
39881908b7 Remove unnecessary lines from ag_window_init()
* priv->settings assignment is already done in that function
* gtk_window_set_hide_titlebar_when_maximized() is somewhat deprecated
  with HeaderBars
2014-07-15 16:43:56 +02:00
2656df25cb Code beautification in ag_chart_create_svg() 2014-07-13 23:01:23 +02:00
faafa81bb2 Merge pull request #34 from gergelypolonkai/uncollapse-chart-icons
Add a dist attribute to XML <body> tags so planet icons won't collide
2014-07-13 22:59:47 +02:00
69233be35e Add a dist attribute to XML <body> tags so planet icons won't collide 2014-07-13 22:44:15 +02:00
1341628c24 Redesign Aquarius symbol 2014-07-12 22:45:26 +02:00
b762d93ee2 Add license to About dialog 2014-07-12 11:07:45 +02:00
fa7a87dd76 Add artists section to the About dialog
Also remove documentors as it was empty
2014-07-12 11:07:33 +02:00