summaryrefslogtreecommitdiffstats
path: root/src/application.c
Commit message (Collapse)AuthorAgeFilesLines
* Manage MqAccelGroup in MqApplication, not MqWindowP. J. McDermott2018-10-051-7/+12
|
* Fix signedness of printf format specifiersP. J. McDermott2018-09-241-2/+2
|
* MqApplication: Add translators commentPatrick McDermott2017-11-251-0/+3
|
* MqApplication: InternationalizePatrick McDermott2017-11-201-20/+21
|
* mq_application_new(): Add a couple blank linesPatrick McDermott2017-11-121-0/+2
|
* mq_application_new(): Use g_new0() instead of malloc()Patrick McDermott2017-11-121-1/+1
|
* mq_application_new(): Get MqConfig from MqProfilePatrick McDermott2017-11-121-6/+2
|
* mq_application_new(): Get current profile ID from MqProfilesPatrick McDermott2017-11-061-2/+6
|
* mq_config_new(): Add a profile type argumentPatrick McDermott2017-11-061-1/+1
|
* mq_application_new(): Set current profilePatrick McDermott2017-11-051-0/+1
|
* mq_application_new(): Drop private parameterPatrick McDermott2017-11-041-1/+1
| | | | Private browsing will be configured with a profile.
* mq_application_get_profiles(): New functionPatrick McDermott2017-11-041-0/+6
|
* MqApplication: Load profilesPatrick McDermott2017-11-041-0/+3
|
* src/config.[ch], src/settings.[ch]: Move under src/config/Patrick McDermott2017-11-011-1/+1
|
* src/about*, src/view-source.*: Move under src/schemes/Patrick McDermott2017-11-011-2/+2
|
* MqApplication: Rename a static functionPatrick McDermott2017-11-011-2/+2
| | | | Its purpose changed in commit 75a2885.
* mq_application_get_webkit_settings(): Delete functionPatrick McDermott2017-11-011-19/+6
| | | | And drop WebKitSettings setup in MqApplication.
* MqApplication: Register "view-source" URI schemePatrick McDermott2017-10-311-0/+9
|
* mq_application_register_tab(): Copy tab ID into hash tablePatrick McDermott2017-10-301-4/+7
| | | | | | | Otherwise, every key in the hash table is incremented to the same invalid value on each mq_application_register_tab() call. Also set key destruction function in mq_application_new().
* mq_application_*_tab(): New tab registration functionsPatrick McDermott2017-10-291-0/+25
|
* mq_application_new(): Make profile parameter constPatrick McDermott2017-10-291-1/+1
|
* mq_application_new(): Pass profile argument to mq_config_new()Patrick McDermott2017-10-291-2/+2
|
* MqApplication: Handle started downloadsPatrick McDermott2017-10-291-0/+11
|
* mq_application_get_resources_dir(): New functionPatrick McDermott2017-10-271-0/+6
|
* mq_application_new(): Set resources directoryPatrick McDermott2017-10-271-0/+13
|
* MqApplication: Register "mq-about" as a local schemePatrick McDermott2017-10-251-0/+3
|
* MqApplication: Make struct definition privatePatrick McDermott2017-10-221-0/+7
|
* mq_application_quit(): Improve "1 windows" messagePatrick McDermott2017-10-181-3/+9
|
* MqApplication, MqWindow: Focus on OK button of quit/close warning dialogsPatrick McDermott2017-10-181-0/+2
|
* src/*.c: Reorganize #include directivesPatrick McDermott2017-10-131-2/+3
|
* mq_application_quit(): New functionPatrick McDermott2017-10-071-0/+95
|
* s/__attribute__((unused))/G_GNUC_UNUSED/Patrick McDermott2017-10-071-3/+2
| | | | | | And rewrap lines. G_GNUC_UNUSED expands to nothing on compilers other than GCC 2.4+.
* mq_application_new(): Initialize marquee mode in off statePatrick McDermott2017-10-061-0/+1
|
* mq_application_get_webkit_settings(): New functionPatrick McDermott2017-10-061-3/+9
|
* MqApplication: Use mq_web_settings_connect()Patrick McDermott2017-10-061-12/+4
|
* MqApplication: Instantiate a WebKitSettings object with a settingPatrick McDermott2017-10-061-8/+29
| | | | WIP.
* MqApplication: Use MqConfigPatrick McDermott2017-10-041-0/+9
|
* mq_application_new(): Set WebKit process modelPatrick McDermott2017-09-301-0/+2
|
* mq_application_new(): Register "mq-about" URI schemePatrick McDermott2017-09-291-3/+8
|
* MARQUEE MODEPatrick McDermott2017-09-291-0/+46
| | | | Only works on ASCII titles so far. Crashes on UTF-8 titles.
* MqApplication: Save list of windowsPatrick McDermott2017-09-291-3/+4
|
* Pass MqWindow up to mq_application_delete_window()Patrick McDermott2017-09-291-2/+1
|
* mq_application_add_window(), mq_window_new(): Make uris constPatrick McDermott2017-09-271-1/+1
|
* mq_window_new(): Accept MqApplication argumentPatrick McDermott2017-09-221-1/+1
| | | | | | | | | | | | 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); ^
* mq_application_delete_window(): New functionPatrick McDermott2017-09-221-0/+9
|
* Enable WK favicon DB in MqApplication, not main()Patrick McDermott2017-09-221-0/+4
|
* src/application.[ch]: New filesPatrick McDermott2017-09-221-0/+59