summaryrefslogtreecommitdiff
path: root/config.def.h
Commit message (Collapse)AuthorAge
* Un(g)boolify to separate GTK dependant code from the restQuentin Rameau2015-11-22
|
* Style update for indentationQuentin Rameau2015-11-22
|
* Add mouse function to play medias in external playerQuentin Rameau2015-11-21
| | | | Control + left click launches mpv with the target media url.
* Style change in functions orderingQuentin Rameau2015-11-21
| | | | | Try to group and order functions in a logical manner. Same thing for config keybindings.
* Adapt user agent handlingQuentin Rameau2015-11-20
| | | | | Now we can only append Surf version to the default WebKit user agent instead of setting the whole string (while this remains possible to do).
* Adapt config MACROs SETPROP, DOWNLOAD, PLUMBQuentin Rameau2015-11-20
| | | | | As we now use directly const strings from WebKitGTK, “constify” arg void pointer.
* Rename mouse functions to clickFUNCTION()Quentin Rameau2015-11-20
|
* Adapt toggle(), clean some config parametersQuentin Rameau2015-11-20
| | | | | | Regroup all toggles in an enum and handle them with a unique function via a switch. That lets us take different actions for each toggle. Add a frame flatenning and a dns preteching options.
* Adapt find()Quentin Rameau2015-11-20
| | | | | | | Slightly new behaviour: searching again for the same string (via MOD+/) resets the search (ie restarts search from document top). Searching for an empty string stops the search (ie all highlights are removed).
* Remove togglescrollbars()Quentin Rameau2015-11-20
| | | | | We do not have access to scrollbars and will have to manipulate DOM to do that.
* Adapt scrollingQuentin Rameau2015-11-20
| | | | | | In fact, we have a scrolling handle ersatz for now using JavaScript calls as we don't have access anymore to scrollbars. We'll have to manipulate the DOM directly (later).
* Adapt inspector handlingQuentin Rameau2015-11-20
| | | | | The inspector is now easily manageable via API, there's no need for keeping its state in the Client.
* Rename fullscreen() to togglefullscreen()Quentin Rameau2015-11-20
| | | | | And handle c->fullscreen value in winevent(). This way we keep track of fullscreen state even if we did not directly initiate the fullscreen.
* Adapted buttonrelease()Quentin Rameau2015-11-20
| | | | | | | Use the current hit test (c->mousepos) to determine where the mouse pointer is. It is possible to link an action to a click and still propagate the event after that by setting the “stop event” parameter of a Button to 0.
* Modify the context name of the hit testsQuentin Rameau2015-11-20
| | | | These relate more to the position of the pointer when an event occurs.
* Move all necessary initialisation to newview()Quentin Rameau2015-11-20
| | | | | Most all the settings and callbacks are set before view creation. Create a related view (with inherited settings) if asked to.
* Remove source(), it has been removed from webkit2gtkQuentin Rameau2015-11-18
| | | | | WebKit2GTK doesn't provide a direct way to view source anymore, we'll have to do that ourselves with a GtkSourceView if we still need that.
* Port surf to gtk3Quentin Rameau2015-11-17
|
* Be more specific about what enablestyles parameter does.Quentin Rameau2015-11-03
| | | | | | | The enablestyles configuration variable and parameter flag manages the global application of styles, not just the site-specific styles. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Style changes in config.def.h.Christoph Lohmann2015-10-31
|
* Fix atom value parsing in SETPROPQuentin Rameau2015-10-13
| | | | | | | | xprop(1) encloses the returned atom string value in double quotes while it doesn't when the value is unset. Original simple parsing would fail and parse the atom name instead of getting an empty value. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fix type of strictssl property.Quentin Rameau2015-07-13
| | | | Thanks to Mark Edgar <medgar123@gmail.com> for having spotted this.
* allow buttonrelease customization in config.hMarkus Teich2015-02-10
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Add some description for the plumb feature.Christoph Lohmann2015-01-19
|
* Add plumbing functionality.Christoph Lohmann2015-01-19
|
* Add a comment about how the styles are iterated.Christoph Lohmann2015-01-18
| | | | Thanks quing for noticing.
* Adding disk cache support for soup.Christoph Lohmann2015-01-17
| | | | This is a merge of the patch of Ben Woolley <tautolog@gmail.com>
* Major styles update.Christoph Lohmann2015-01-17
| | | | | | In config.h there is now some styles array to apply site-specific styles. This can be toggled using the -mM flags. If a stylefile is manually specified, then this will overwrite everything.
* fix some indentation in config.def.hMarkus Teich2014-02-28
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Change the accept no third party in the doc to the right meaning.Christoph Lohmann2014-01-30
|
* Add a way to define the cookie policy.Christoph Lohmann2014-01-30
| | | | | | | | | This adds the -a flag to define a string of the toggle string for the cookie policy modes. There is now a new »cookiepolicies« string in config.h and the Mod+Shift+a now can toggle the policy but will not cause a reload, because this would only add a burden when toggling through accept and not accept. Thanks Quentin Rameau <quinq.ml@gmail.com> for the suggestions!
* Add zoom level support.Christoph Lohmann2013-10-19
|
* Add fullscreen mode as flag and config option.Christoph Lohmann2013-08-25
|
* applied Nick's 96dpi patch, thanksAnselm R Garbe2013-07-20
|
* Allowing geo location policy decisions.Christoph Lohmann2013-04-28
|
* Add an option to disable the indicators.Christoph Lohmann2013-04-14
|
* Ensure curl follows redirects for downloadsNick White2013-03-31
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* A typo in SETPROP macro: should be ``printf %b'', not ``printf''.Alexander Sedov2013-03-30
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fixed SETPROP() macro behaviour in config.def.h to handle escapes correctly.Alexander Sedov2013-03-21
| | | | | | | | | | | xprop prints information in format PROPERTY(STRING) = "escaped string", which causes problem with repeated Ctrl-F: any non-ascii turns into \ooo\ooo, this later turns into \\ooo\\ooo, and so on. To de-escape string, printf(1) is used, getting information from xargs -0; without -0 xargs will try to handle escapes by itself and also do shenanigans with quotes, which is totally undesired. Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Adding a default font size option.Christoph Lohmann2013-03-14
| | | | Thanks Alexander Sedov <alex0player@gmail.com>!
* Adding kiosk mode.Christoph Lohmann2013-03-11
| | | | Thanks to Christian Hesse <mail@eworm.de>!
* disable/toggle scrollbarsCarlos J. Torres2013-02-25
| | | | | | | | | | | | | * add flag to main * add flag to manual * add signal handler to block default scrollbar policy * add toggle of scrollbars (hacky - but no reload) with a twitch * add key map to manual * add commandline flag to children surfers * update TODO * sort stuff alphabetically for the style inquisition Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Add a toggle command for the stylefile.Christoph Lohmann2013-02-16
| | | | | | The patch adds some better formatting for the manpage too. Thanks to Nick <suckless-dev@njw.me.uk> for the toggle patch!
* fix DOWNLOAD macro to use cookiefile variableCarlos J. Torres2013-02-13
| | | | Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Removed progress indicatorJens Nyberg2013-02-12
| | | | | | | | | | This removes the progress indicator and replaces it with letters in the window title. T/U: Trusted, Untrusted P/-: Proxy, No proxy Signed-off-by: Christoph Lohmann <20h@r-36.net>
* Fixing cookie handling for https/http by using curl.Christoph Lohmann2013-02-02
|
* Making more than one Modkey to work in keys.Christoph Lohmann2013-01-26
|
* Adding web inspector support to surf.Christoph Lohmann2013-01-26
| | | | Thanks Gregor Best <gbe@ring0.de>!
* Changing the default DOWNLOAD to use st.Christoph Lohmann2012-12-04
|
* Implementing fullscreen mode. Thanks Krol, Willem van de!Christoph Lohmann2012-12-03
|