summaryrefslogtreecommitdiff
path: root/gtk/window.c
Commit message (Collapse)AuthorAgeFilesLines
* move frontends into sub directoryVincent Sanders2016-05-151-1337/+0
|
* update gtk to stop using depricated warn_user APIVincent Sanders2016-04-261-2/+3
|
* Split utils header into string functions and everything elseVincent Sanders2016-04-211-0/+1
| | | | | split out the string handling API from the rest of the utils header and fix up all the fallout.
* Ensure gtk windows have a default favicon at creation.Vincent Sanders2015-06-301-4/+11
| | | | | | | This ensures newly created gtk gui windows have a default favicon set. This is necessary because new tab creation displays the new windows contents before an icon has been set and the icon will not be changed from the previously viewed tabs icon.
* Change GTK UI builder handling to use resource APIVincent Sanders2015-06-171-19/+18
| | | | | | | | | | | | | | GTK UI builder resources have till now been exclusively stored on disc requiring netsurf to ship numerous additional resource files. This requires going to disc every time a UI action is performed which can become a lot of unwanted file handling. GLib/GTK has moved towards GResource handling for such resources instead. It now seems that migrating to this style of usage is expected and indeed the only portable way to include pixbufs. This introduces an API to hide the various implementation details of how resources are handled from the rest of the codebase.
* move gtk menu cursor creation into separate resourec handling moduleVincent Sanders2015-06-041-14/+1
| | | | | | The gtk resource handling must be changed for GTK3 as creating from inline is depricated. This is the first step to splitting out the support.
* Change LOG() macro to be varadicVincent Sanders2015-05-281-13/+21
| | | | | | | | | | | | This changes the LOG macro to be varadic removing the need for all callsites to have double bracketing and allows for future improvement on how we use the logging macros. The callsites were changed with coccinelle and the changes checked by hand. Compile tested for several frontends but not all. A formatting annotation has also been added which allows the compiler to check the parameters and types passed to the logging.
* Fix warnings about using integer absolute operations on floating point valuesVincent Sanders2015-05-211-7/+9
|
* Change how GDK image resources are compiled in.Vincent Sanders2015-05-201-2/+2
| | | | | | | | | | The compiled in image resources were being created as a structure in a generated c source file. The generation of this file caused constness warning as a guint8 * was initialised from a const char array. This changes the generation and use of these compiled in resources to use the raw inline form as suggested by the documentation removing the const warning.
* fix documentation errors in gtk introduced by recent updates.Vincent Sanders2015-04-121-2/+11
|
* remove usage of deprecated gtk alignment interfaceVincent Sanders2015-04-111-5/+7
|
* Update gtk compatability header to cope with deprication of stock icon interfaceVincent Sanders2015-04-081-2/+2
|
* make the form select menu API smaller.Vincent Sanders2014-11-131-6/+11
| | | | | | By hiding all but the form selection menu option structure from code outside of render this reduces the API to the absolute minimum to support this feature.
* Continue doxygen error cleanup.Vincent Sanders2014-11-081-1/+1
|
* remove unecessary utils/types.hVincent Sanders2014-11-021-0/+1
| | | | | | This cleans up this header and moves the functionality into more useful places while reducing the include complexity but only pulling in whats required.
* Move create_form_select_menu to window gui table.Michael Drake2014-10-241-0/+55
|
* Update gtk frontend to cope with split operations table headersVincent Sanders2014-10-161-1/+1
|
* clean up gtk scaffolding interface, remove lots of cruft and globalsVincent Sanders2014-07-271-2/+2
|
* stop gtk about dialog forcing navigation of existing browsing contextsVincent Sanders2014-07-271-4/+20
|
* add link context menu to gtk and add link copying and bookmarkingVincent Sanders2014-07-071-2/+3
|
* try and improve usage of browser window internalsVincent Sanders2014-07-061-7/+1
|
* change reformat to be driven from the scheduler like redrawVincent Sanders2014-07-011-22/+10
|
* Add 1px to caret height.Michael Drake2014-03-271-3/+3
|
* Fix caret cropping using clip rectangle.Achal-Aggarwal2014-03-211-2/+14
|
* GTK: add some support for input methods.John-Mark Bell2014-02-171-1/+49
| | | | | | | | We do not currently support pre-edit texts, or retrieving/modifying text surrounding the caret. This does, at least, finally allow the use of dead keys during text input, but probably is insufficient for useful input of CJKV &c.
* Clean up gui_window creation API.Michael Drake2014-02-091-7/+8
|
* Use get_scale function instead of derefing the bw.Michael Drake2014-02-081-18/+23
|
* Use browser_window_get_extents function.Michael Drake2014-02-081-5/+4
|
* Use browser_window_has_content.Michael Drake2014-02-081-2/+2
|
* Remove pointless variable.Michael Drake2014-02-081-2/+1
|
* remove unnecessary includesVincent Sanders2014-02-011-3/+5
|
* split browser gui operations upVincent Sanders2014-01-151-2/+2
|
* move teh final optional window operations into the tableVincent Sanders2014-01-131-16/+12
|
* move four more optional window operations to tableVincent Sanders2014-01-131-4/+9
|
* move two more mandantory window operations to tableVincent Sanders2014-01-131-2/+4
|
* move window scroll getter and setter into operations tableVincent Sanders2014-01-131-14/+17
|
* move mandantory window update and redraw operations into tableVincent Sanders2014-01-121-2/+4
|
* move more optional window operations into table including removing unused ↵Vincent Sanders2014-01-121-20/+0
| | | | hide_pointer operation altogether
* split gui operations into core and window and move more operations into tablesVincent Sanders2014-01-121-8/+18
|
* move window creation and destruction into tableVincent Sanders2014-01-111-4/+5
|
* Change gui_file_gadget_interface to pass gui_window not browser_window, add ↵Rob Kendrick2014-01-051-0/+32
| | | | GTK implementation that of course does not work.
* fix error path resource handling in gtk browser window creation (coverity ↵Vincent Sanders2013-11-031-12/+14
| | | | 1109888)
* completely rework scaffolding window destruction using gtkwidget destroy signalsVincent Sanders2013-06-281-38/+55
|
* add new tab tabVincent Sanders2013-06-271-2/+2
|
* fix status/toolbar bottom split position and setting user option in gtkVincent Sanders2013-06-251-34/+76
|
* fix mismatched option name and variable namesVincent Sanders2013-05-281-2/+2
| | | | | block_ads should be block_advertisments to match option name toolbar_status_width should be toolbar_status_size to match option name
* move options includeVincent Sanders2013-05-281-1/+1
|
* remove extraneous debugVincent Sanders2013-05-231-2/+0
|
* Front ends have no reason to include desktop/selection.h now.Michael Drake2013-05-101-1/+0
|
* Remove struct selection from gui_drag_save_selection, so gui.h doesn't need ↵Michael Drake2013-05-101-1/+1
| | | | it now.