Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Whitespace cleanup. | Matthew Barnes | 2009-09-05 | 1 | -1/+0 |
| | |||||
* | Kill the default parent window hack in e-error.c. | Matthew Barnes | 2009-09-05 | 1 | -1/+10 |
| | | | | | | Fix as many cases that relied on it as I could find, but there may be more cases out there. They should be fixed too. Passing a NULL parent window to e_error_new() is illegal and will emit a runtime warning. | ||||
* | Fix a runtime warning. | Matthew Barnes | 2009-09-05 | 1 | -1/+3 |
| | |||||
* | Copy folder tree state of 1st window when opening new windows. | Matthew Barnes | 2009-09-04 | 2 | -3/+6 |
| | |||||
* | Bug 593881 - Category icons do not appear in preview pane | Matthew Barnes | 2009-09-03 | 2 | -1/+51 |
| | |||||
* | Bug #593762 - Event creation window has start date as Today | Milan Crha | 2009-09-03 | 1 | -43/+47 |
| | |||||
* | Bug 593940 - No options for google address book available | Matthew Barnes | 2009-09-03 | 1 | -2/+6 |
| | |||||
* | Introduce an EShellView::execute-search signal. | Matthew Barnes | 2009-09-03 | 19 | -981/+836 |
| | | | | | | | | | | | | This addresses bug #593896 but is also a cleaner design than before. It introduces an EShellView::execute-search signal and renames the "search-execute" action to "search-quick" to clarify that it's only meant for the "quick" search bar in the main window. Shell view subclasses should implement the execute_search() method to actually execute a search. e_shell_view_execute_search() emits the new signal. | ||||
* | Bug #593761 - Wrong dir for calendar local sources | Milan Crha | 2009-09-02 | 6 | -183/+77 |
| | | | | | | | | | | | | | | - using _get_data_dir, not _get_config_dir in calendar's and similar ensure_sources functions - current executable version is stored in gconf, thus not every start is migrating done - applied changes which were using e_source_list_ensure_group calls - e_source_list_sync is called at the end of those ensure_sources, as it didn't work to me to see the Personal source after start when I had no "On this computer" group (the group was added, but the source wasn't) | ||||
* | Relax the EBinding API to reduce GObject casting. | Matthew Barnes | 2009-09-02 | 18 | -184/+184 |
| | | | | | Also make it more fault-tolerant by warning about non-existent property names instead of just crashing. | ||||
* | Disable classic/vertical options when preview is hidden. | Matthew Barnes | 2009-09-02 | 6 | -0/+34 |
| | |||||
* | Bug 593776 - Fix include of a11y/addressbook and a11y/calendar | H.Habighorst | 2009-09-01 | 1 | -1/+0 |
| | |||||
* | Bug 593627 - Tool bar > new > contact list doesn't work | Matthew Barnes | 2009-09-01 | 1 | -1/+1 |
| | |||||
* | Bug 579598 - Change in view types (from Menu) is not working | Milan Crha | 2009-09-01 | 2 | -2/+2 |
| | |||||
* | Bug 593685 - Insensitive actions after start | Matthew Barnes | 2009-09-01 | 1 | -0/+2 |
| | |||||
* | Bug 593613 - Doesn't differentiate an appointment and meeting button click | Matthew Barnes | 2009-09-01 | 1 | -0/+3 |
| | |||||
* | Get EConfig and EEvent hooks working again. | Matthew Barnes | 2009-09-01 | 9 | -38/+72 |
| | | | | | | | | | | | | | There were a number of problems: - Walk the GType tree to find EPluginHook subclasses, instead of just registering the immediate children. - Some EConfig and EEvent subclasses were not being configured properly (particularly the mail and calendar subclasses). - Add preference window pages after the main loop starts to make sure all plugins and plugin hooks are installed first. | ||||
* | Simplify EPlugin loading at startup. | Matthew Barnes | 2009-08-30 | 46 | -172/+4364 |
| | | | | | | | | | | | | | - Require all EPlugin and EPluginHook subtypes be registered before loading plugins. This drastically simplifies the EPlugin/EPluginHook negotiation. - Turn most EPluginHook subtypes into GTypeModules and register their types from an e_module_load() function (does not include shell hooks). - Convert EPluginLib and the Mono and Python bindings to GTypeModules and register their types from an e_module_load() function, and kill EPluginTypeHook. | ||||
* | Re-enable more calendar code. | Matthew Barnes | 2009-08-28 | 1 | -2/+5 |
| | |||||
* | Fix calendar pane positioning. | Matthew Barnes | 2009-08-28 | 2 | -8/+8 |
| | |||||
* | Add vertical view to Contacts. | Matthew Barnes | 2009-08-28 | 4 | -31/+186 |
| | |||||
* | Remove redundant "vertical view" functions. | Matthew Barnes | 2009-08-28 | 3 | -65/+71 |
| | |||||
* | Add vertical view to Memos and Tasks. | Matthew Barnes | 2009-08-28 | 10 | -85/+315 |
| | |||||
* | Add EPaned widget to generalize vertical view. | Matthew Barnes | 2009-08-28 | 2 | -145/+20 |
| | |||||
* | Fix preview pane size persistance. | Matthew Barnes | 2009-08-28 | 2 | -22/+127 |
| | | | | | | | | The new packing style broke preview pane size restoration at startup. The fix is to store the size of the bottom GtkPaned child instead of the top child. Unfortunately GtkPaned does not make this easy. Will have to repeat this procedure for the other preview panes. | ||||
* | More panel resizing goodness. | Matthew Barnes | 2009-08-27 | 2 | -4/+4 |
| | |||||
* | Fix resize behavior of main window panes. | Matthew Barnes | 2009-08-27 | 4 | -8/+8 |
| | | | | | Now that I finally understand how the "resize" and "shrink" child properties in GtkPaned work. Was a real brain teaser for some reason. | ||||
* | Switch between classic and vertical view using GtkOrientable. | Matthew Barnes | 2009-08-26 | 1 | -18/+9 |
| | |||||
* | Exit if no command-line URIs are handled. | Matthew Barnes | 2009-08-25 | 3 | -17/+21 |
| | |||||
* | Handle calendar URIs from the command line. | Matthew Barnes | 2009-08-25 | 3 | -4/+151 |
| | |||||
* | Fix migration errors. | Matthew Barnes | 2009-08-23 | 3 | -6/+3 |
| | |||||
* | More GnomeCalendar cleanup. | Matthew Barnes | 2009-08-19 | 1 | -6/+32 |
| | |||||
* | Trim more fat off the GnomeCalendar API. | Matthew Barnes | 2009-08-19 | 3 | -8/+162 |
| | | | | Oh and hey look, I can see events now! | ||||
* | Remove duplicate handlers for date navigator signals. | Matthew Barnes | 2009-08-18 | 1 | -1/+7 |
| | |||||
* | Bug 567260 - Migrate from GnomeDruid to GtkAssistant | Milan Crha | 2009-08-18 | 2 | -18/+18 |
| | |||||
* | Bug 592032 - Marks message as read when preview is off | Matthew Barnes | 2009-08-18 | 2 | -3/+14 |
| | |||||
* | Fix compiler warnings and deprecated GTK+ API usage. | Matthew Barnes | 2009-08-16 | 14 | -25/+27 |
| | |||||
* | Get the calendar view popup menu working. | Matthew Barnes | 2009-08-16 | 4 | -15/+710 |
| | |||||
* | Track the timezone in one place: ECalModel | Matthew Barnes | 2009-08-13 | 1 | -12/+3 |
| | |||||
* | Add new preferences missed during the 2.27.90 merge. | Matthew Barnes | 2009-08-13 | 7 | -9/+145 |
| | |||||
* | Make switching between calendar views work. | Matthew Barnes | 2009-08-13 | 4 | -15/+39 |
| | |||||
* | Get the backup-restore plugin working. | Matthew Barnes | 2009-08-12 | 1 | -2/+0 |
| | |||||
* | Get the itip-formatter plugin working. | Matthew Barnes | 2009-08-12 | 8 | -54/+202 |
| | |||||
* | Get the calendar-weather plugin working. | Matthew Barnes | 2009-08-12 | 1 | -1/+1 |
| | |||||
* | Allow calendar to be written as a external app and split the huge .so to | Srinivasa Ragavan | 2009-08-12 | 1 | -1/+1 |
| | | | | a share private lib and component lib. | ||||
* | Bug #205137 - Configurable date formats in components | Milan Crha | 2009-08-12 | 2 | -2/+10 |
| | |||||
* | Bug #203853 - Cut/Copy key bindings don't work in day and week views | Milan Crha | 2009-08-11 | 1 | -0/+9 |
| | |||||
* | Bug #420513 - Be able to notify about meeting only new attendees | Milan Crha | 2009-08-11 | 4 | -4/+4 |
| | |||||
* | More refactoring of settings management. | Matthew Barnes | 2009-08-09 | 9 | -55/+87 |
| | |||||
* | Seal up ESignature and add GObject properties. | Matthew Barnes | 2009-08-07 | 1 | -1/+1 |
| | |||||
* | More refactoring of settings management. | Matthew Barnes | 2009-08-06 | 2 | -110/+0 |
| | |||||
* | Fix a typo. | Matthew Barnes | 2009-08-06 | 1 | -1/+1 |
| | |||||
* | Replace more "config" classes with property bindings. | Matthew Barnes | 2009-08-06 | 14 | -252/+840 |
| | |||||
* | Simplify binding EShellSettings properties to GConf keys. | Matthew Barnes | 2009-08-01 | 3 | -573/+109 |
| | |||||
* | Add properties to calendar classes. | Matthew Barnes | 2009-07-31 | 2 | -13/+340 |
| | | | | | So we can bind them to EShellSettings and kill off EDayViewConfig and similar GConf notification classes. | ||||
* | Trimming redundancy. | Matthew Barnes | 2009-07-29 | 2 | -5/+30 |
| | |||||
* | Merge commit 'EVOLUTION_2_27_5' into kill-bonobo | Matthew Barnes | 2009-07-28 | 1 | -1/+1 |
| | |||||
* | Start re-enabling parts of the calendar. | Matthew Barnes | 2009-07-28 | 1 | -30/+15 |
| | |||||
* | Get GnomeCalendar and the a11y stuff building. | Matthew Barnes | 2009-07-28 | 2 | -5/+47 |
| | |||||
* | Kill CalSearchBar. | Matthew Barnes | 2009-07-28 | 4 | -10/+159 |
| | | | | Move calendar search logic to ECalShellView. | ||||
* | Re-enable building GnomeCalendar, except it doesn't yet. | Matthew Barnes | 2009-07-26 | 3 | -164/+61 |
| | | | | Also, start trimming the API down a bit. Lots of redundancy there. | ||||
* | Move "user_created" signal emission to ECalendarView. | Matthew Barnes | 2009-07-24 | 1 | -0/+22 |
| | |||||
* | Some minor fixes before I dive into calendar again. | Matthew Barnes | 2009-07-24 | 1 | -16/+72 |
| | |||||
* | More whitespace cleanup. | Matthew Barnes | 2009-07-19 | 2 | -50/+50 |
| | |||||
* | Bug 579702 – Contact changes not shown until restart | Matthew Barnes | 2009-07-18 | 2 | -6/+14 |
| | |||||
* | Kill a debug message. | Matthew Barnes | 2009-07-18 | 1 | -2/+0 |
| | |||||
* | Implement the mail backend's quit strategy. | Matthew Barnes | 2009-07-17 | 1 | -0/+203 |
| | |||||
* | Prompt when exiting with unsent messages. | Matthew Barnes | 2009-07-17 | 1 | -0/+48 |
| | |||||
* | Fix some compiler warnings. | Matthew Barnes | 2009-07-15 | 1 | -4/+4 |
| | |||||
* | Fix excessive whitespace. | Matthew Barnes | 2009-07-14 | 10 | -20/+0 |
| | |||||
* | Kill the global EMailShellBackend variable. Yay! | Matthew Barnes | 2009-07-14 | 2 | -15/+0 |
| | |||||
* | Add a "quit-requested" signal to the shutdown protocol. | Matthew Barnes | 2009-07-13 | 3 | -34/+69 |
| | | | | | | | The contact and contact-list editors now demonstrate this part of the shutdown protocol. They listen for the "quit-requested" signal from the shell and prompt to save changes, discard changes or cancel. If the user cancels, the editor calls e_shell_cancel_quit() to do just that. | ||||
* | Implement the shutdown protocol and stub in session management. | Matthew Barnes | 2009-07-11 | 5 | -23/+15 |
| | | | | | The shutdown protocol is modelled after online/offline preparation. Session management code is copied from libegg. Not yet used. | ||||
* | Use an EShellSettings property for folder tree search. | Matthew Barnes | 2009-07-11 | 2 | -0/+25 |
| | |||||
* | Kill the last GtkOptionMenu instances. | Matthew Barnes | 2009-07-03 | 3 | -108/+34 |
| | | | | | | | Wrote a new widget (ECharsetComboBox) to replace e-charset-picker.c. The widget provides a "charset" string property that allows us to bind to GConf keys (via EShellSettings). Moved e_charset_add_radio_actions() to e-util/e-charset.c. Updated Glade files, #include lines, etc. | ||||
* | Fix merge issues in EMAccountEditor. | Matthew Barnes | 2009-07-02 | 3 | -63/+83 |
| | |||||
* | Merge branch 'master' into kill-bonobo | Matthew Barnes | 2009-07-01 | 1 | -0/+50 |
| | |||||
* | Fix "make distcheck" errors and other build cleanups. | Matthew Barnes | 2009-07-01 | 3 | -3/+3 |
| | |||||
* | Get the "startup-wizard" plugin working again. | Matthew Barnes | 2009-06-30 | 5 | -3229/+0 |
| | |||||
* | Partial fix for bug #587014. | Matthew Barnes | 2009-06-27 | 1 | -0/+54 |
| | | | | Cursor now moves to the correct row, but row is not selected. | ||||
* | Get the "mail-to-task" plugin working again. | Matthew Barnes | 2009-06-26 | 1 | -4/+2 |
| | | | | | This one was more challenging. It exposed some flaws in the new shell design and in EPluginUI, which is good because they're fixed now. | ||||
* | Kill the "folder-unsubscribe" plugin. | Matthew Barnes | 2009-06-26 | 3 | -1/+34 |
| | | | | Feature is now integrated in core mailer, and has a main menu item. | ||||
* | Radically reorganize source code. | Matthew Barnes | 2009-06-25 | 104 | -0/+44146 |
- Collect all shell modules into a new top-level 'modules' directory: $(top_srcdir)/modules/addressbook $(top_srcdir)/modules/calendar $(top_srcdir)/modules/mail Nothing is allowed to link to these, not plugins nor other modules. THIS SOLVES BUG #571275 AND OPENS THE DOOR TO PORTING TO MAC OS X. - Mimic the libevolution-mail-shared library from master (except drop the "shared" suffix) and have libevolution-mail-importers and all mail-related plugins link to it. - Discard the a11y subdirectories and have the files live alongside their counterpart widgets. |