summaryrefslogtreecommitdiff
path: root/lib/ephy-initial-state.c
Commit message (Collapse)AuthorAgeFilesLines
* Relicense to GPLv3+wip/gplv3Michael Catanzaro2016-09-111-5/+7
| | | | http://www.gnu.org/licenses/rms-why-gplv3.html
* UncrustifyMichael Catanzaro2016-03-291-38/+37
| | | | | | | | | | | | | | For a better future. Apologies when your 'git blame' resolves to this. I'm actually really impressed how well uncrustify works. This required only a little one-time manual work to avoid extra space in 'else {'. This breaks function prototype alignment, but we should get rid of most of those anyway. We decided to start aligning function parameters, like other GNOME applications. It looks nicer this way, and I couldn't teach uncrustify the previous Epiphany style.
* Enable and placate -Wsign-compareMichael Catanzaro2015-12-261-1/+1
|
* Remove FSF address from license headersMichael Catanzaro2015-12-071-3/+1
|
* ephy-initial-state: document 'ephy_initial_state_add_window'Xan Lopez2012-12-161-0/+17
|
* ephy-state: rename to 'ephy-initial-state'Xan Lopez2012-12-161-0/+462
The purpose of EphyState is to track the sizes and positions of windows, paned or expanders in order to remember what is the preferred *initial* and *default* state of those UI elements. So for example we merge the tracking of the size/positions of all main windows in one record, because we only need an initial value which we'll use as default for newly created EphyWindows. Since this is a very specific task, different to the actual tracking of all sizes and positions in EphySession in order to restore them at startup, rename the class to EphyInitialState to avoid confusions.