summaryrefslogtreecommitdiffstats
path: root/src/splash-plugins/spinfinity/plugin.c
Commit message (Collapse)AuthorAgeFilesLines
* Port spinfinity over to use new entry in libplybootsplashRay Strode2008-08-011-111/+32
|
* Make spinfinity plugin provide erase/draw handlersRay Strode2008-07-291-3/+64
|
* Don't go to text mode on exit.Kristian Høgsberg2008-06-161-3/+1
|
* Drop fade out in spinfinity pluginRay Strode2008-06-161-0/+2
|
* Use proper gradient color stops for spinfinityRay Strode2008-06-161-2/+3
|
* drop tabsRay Strode2008-06-161-3/+3
|
* Move throbber to libplybootsplashRay Strode2008-06-121-9/+9
|
* place throbber relative to logo in spinfinity pluginRay Strode2008-06-121-1/+1
|
* track logo area in spinfinity plugin stateRay Strode2008-06-121-10/+9
|
* Add new throbber_load function to preload framesRay Strode2008-06-121-0/+4
| | | | | This will be important for determining the propery location of the throbber on screen
* Factor out background drawing in plugins.Kristian Høgsberg2008-06-021-9/+12
|
* Port password handling over to using new answer objectRay Strode2008-06-021-10/+8
|
* Fix one more place in spinifinity that wasn't honoring configured color0.1.0Ray Strode2008-05-301-2/+2
|
* fill lock screen with configured color in spinfinity pluginRay Strode2008-05-301-2/+2
|
* Change splash plugins to honor configured background colorRay Strode2008-05-301-8/+9
| | | | Previously, they were still using blue.
* Allow distro/system builder to specify path to logoRay Strode2008-05-291-1/+1
| | | | | | | Previously we've just hard coded the location to the fedora logo. Now it's a configure time flag. We also have a configure time flag for a background color that goes with the logo, but none of the splash plugins make use of it yet.
* Change throbber to take window instead of framebufferRay Strode2008-05-291-1/+1
| | | | | | We want the throbber to know about the window it's in, so that it will be easier to move drawing code to a draw handler model
* Have window manage frame buffer instead of pluginsRay Strode2008-05-291-8/+6
| | | | | | | This is a first step toward making the window provide an draw handler interface, so we can hide the details of pause/unpause, resetting raw mode, and graphics mode, etc from the individual plugins.
* Set up event loop exit handler in plugins on show successRay Strode2008-05-291-9/+5
| | | | | | | | Previously we were setting up the exit handler at the top of the show vtable function. This meant having to remove the exit handler if the show fails. It's much easier to not set up the handler until after we know we're going to succeed.
* Drop line editing plugin vtable functions. Use window directly.Ray Strode2008-05-291-42/+53
| | | | | | | | | | | | | | | | There was a sort useless layer of indirection between the window object and splash plugins. It ended up with functions like: void on_backspace (ply_splash_plugin_t *plugin) { plugin->interface->on_backspace (plugin); } Since the individual plugins are aware of the window object anyway, they can register their own on_backspace et al handlers without going through the ply_splash_plugin_t layer.
* Rename all the plugins from <plugin-name>.c -> main.cRay Strode2008-05-281-0/+479
Just makes things more consistent.