summaryrefslogtreecommitdiffstats
path: root/src/window.c
Commit message (Collapse)AuthorAgeFilesLines
* MqWindow: Use mq_notebook_insert_top()Patrick McDermott2017-10-231-12/+5
|
* MqWindow: Append (rather than prepend) tabsPatrick McDermott2017-10-231-4/+6
|
* mq_window_insert_tab(): Remove functionPatrick McDermott2017-10-231-14/+0
|
* Mqwindow: Use mq_notebook_insert_sibling()Patrick McDermott2017-10-231-2/+8
|
* MqWindow: Fix notebook page switch callbackPatrick McDermott2017-10-231-5/+2
|
* MqWindow: Adapt to new tree-less MqTabPage APIPatrick McDermott2017-10-231-7/+7
|
* MqWindow: Use MqNotebookPatrick McDermott2017-10-221-5/+2
|
* MqWindow: Don't show notebook borderPatrick McDermott2017-10-221-0/+1
|
* MqWindow: GObjectifyPatrick McDermott2017-10-221-57/+163
|
* MqApplication, MqWindow: Focus on OK button of quit/close warning dialogsPatrick McDermott2017-10-181-0/+2
|
* MqWindow: Use MqTabPagePatrick McDermott2017-10-181-10/+10
|
* MqWindow: Update a TODO commentPatrick McDermott2017-10-171-2/+3
|
* src/*.c: Reorganize #include directivesPatrick McDermott2017-10-131-1/+2
|
* Standardize spelling of GParamSpec parameter namesPatrick McDermott2017-10-131-1/+1
|
* mq_window_toggle_fullscreen(): New functionPatrick McDermott2017-10-071-0/+23
|
* mq_window_quit(): New functionPatrick McDermott2017-10-071-0/+6
|
* mq_window_get_num_tabs(): New functionPatrick McDermott2017-10-071-1/+7
| | | | And use in close confirmation dialog creation.
* MqWindow: Add tabs.warn-on-close check to close confirmationPatrick McDermott2017-10-071-0/+22
|
* MqWindow: Add icon to close confirmation dialogPatrick McDermott2017-10-071-7/+25
|
* MqWindow: Confirm close of multiple tabsPatrick McDermott2017-10-071-0/+47
|
* MqWindow: Save MqConfig object in structPatrick McDermott2017-10-071-7/+6
|
* s/__attribute__((unused))/G_GNUC_UNUSED/Patrick McDermott2017-10-071-11/+10
| | | | | | And rewrap lines. G_GNUC_UNUSED expands to nothing on compilers other than GCC 2.4+.
* MqWindow: Set window.width and window.height on resizePatrick McDermott2017-10-061-0/+11
|
* mq_window_new(): Set default window size even if maximizedPatrick McDermott2017-10-061-3/+3
|
* MqWindow: Set window.maximized on maximize or unmaximizePatrick McDermott2017-10-061-0/+11
|
* mq_window_new(): Obey window.* preferencesPatrick McDermott2017-10-061-1/+10
|
* MARQUEE MODEPatrick McDermott2017-09-291-0/+18
| | | | Only works on ASCII titles so far. Crashes on UTF-8 titles.
* Pass MqWindow up to mq_application_delete_window()Patrick McDermott2017-09-291-1/+7
|
* mq_window_set_current_tab(): New functionPatrick McDermott2017-09-281-0/+7
|
* mq_window_update_tab_title(): New functionPatrick McDermott2017-09-281-0/+8
|
* MqWindow: Count tabs from 1Patrick McDermott2017-09-281-2/+2
| | | | The root tab is 0. MqTab counts non-root tabs from 1.
* MqWindow: Update title on tab switchPatrick McDermott2017-09-281-0/+13
|
* mq_window_get_current_tab(): New functionPatrick McDermott2017-09-281-0/+16
|
* mq_application_add_window(), mq_window_new(): Make uris constPatrick McDermott2017-09-271-1/+1
|
* mq_tab_new*(): Drop MqWindow parameterPatrick McDermott2017-09-271-2/+2
| | | | Instead get it through the tree.
* mq_tab_new_root(): Accept and save MqWindow argumentPatrick McDermott2017-09-271-1/+1
|
* MqWindow: Remove old functionPatrick McDermott2017-09-251-17/+0
|
* mq_window_insert_tab(): Show tabPatrick McDermott2017-09-251-0/+2
| | | | | Only the first gtk_widget_show_all() call is needed, but let's make sure everything is shown.
* mq_window_new(): Add tabs without adding to notebookPatrick McDermott2017-09-251-2/+2
| | | | | mq_window_insert_tab(), which adds a tab to the notebook, is now called by mq_tab_new() and mq_tab_new_relative().
* mq_window_insert_tab(): New functionPatrick McDermott2017-09-251-0/+12
|
* MqWindow: Don't overwrite tab positions on createPatrick McDermott2017-09-251-2/+0
|
* mq_tab_new(), mq_tab_new_relative(): Change argument type to (MqWindow *)Patrick McDermott2017-09-241-1/+1
| | | | And save the window in the MqTab struct.
* mq_window_get_application(): New functionPatrick McDermott2017-09-241-0/+6
|
* MqWindow: Save MqApplication in structPatrick McDermott2017-09-241-0/+1
|
* MqWindow: s/mq_tab_new/mq_tab_new_relative/Patrick McDermott2017-09-241-1/+1
|
* MqWindow: Create and save root tab nodePatrick McDermott2017-09-241-0/+2
|
* Save MqApplication in MqTabPatrick McDermott2017-09-221-4/+4
|
* MqWindow: Delete window from application on closePatrick McDermott2017-09-221-2/+1
| | | | Don't quit on window close.
* mq_window_new(): Accept MqApplication argumentPatrick McDermott2017-09-221-1/+2
| | | | | | | | | | | | Breaks build due to types not being defined soon enough in circularly dependent headers: CC src/marquee-main.o In file included from src/application.h:27:0, from src/main.c:30: src/window.h:35:15: error: unknown type name ‘MqApplication’ mq_window_new(MqApplication *application, gchar **uris); ^
* MqWindow: Don't load "about:new"Patrick McDermott2017-09-221-1/+1
|