summaryrefslogtreecommitdiffstats
path: root/src/splash-plugins/spinfinity
Commit message (Collapse)AuthorAgeFilesLines
* Port spinfinity over to use new entry in libplybootsplashRay Strode2008-08-012-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-162-3/+6
|
* drop tabsRay Strode2008-06-161-3/+3
|
* Move throbber to libplybootsplashRay Strode2008-06-124-398/+10
|
* 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-123-10/+21
| | | | | This will be important for determining the propery location of the throbber on screen
* Create new libplybootsplashRay Strode2008-06-091-9/+7
| | | | | | | | | | | The old approach of including the same source files into multiple places is less than pretty. But moving the code to libply didn't seem right either, since libply is fairly generic and could in theory get swapped out with a standard runtime at some point. Also, exposing libplybootsplash as an external library will facilitate creating out of tree splash plugins.
* Factor out background drawing in plugins.Kristian Høgsberg2008-06-021-9/+12
|
* Port password handling over to using new answer objectRay Strode2008-06-022-10/+10
|
* 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
|
* Fix up throbber to use correct color, tooRay Strode2008-05-301-4/+4
|
* 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-292-2/+6
| | | | | | | 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.
* Reset graphics mode before drawing throbberRay Strode2008-05-291-0/+2
| | | | This ensures keyboard input stays in raw mode
* Change throbber to take window instead of framebufferRay Strode2008-05-293-4/+8
| | | | | | 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-282-1/+1
| | | | Just makes things more consistent.
* Don't crash if the user presses enter when a password isn't being asked forRay Strode2008-05-281-3/+11
|
* Make the throbber less choppy, by always showing every frameRay Strode2008-05-281-0/+6
|
* Make throbber continue to work after stop and startRay Strode2008-05-281-3/+7
|
* If no frames could be loaded for the throbber, noop instead of crashRay Strode2008-05-281-0/+4
|
* Move images in splash-plugins to subdirectories, so they don't clashRay Strode2008-05-284-13/+19
|
* Add a throbber to the splash screen and build spinfinityRay Strode2008-05-288-86/+423
|
* Drop some unused declarations that are fall out from cut-n-pasteRay Strode2008-05-281-3/+2
|
* Add frames for spinfinity throbberRay Strode2008-05-2838-0/+24
|
* Copy and modify fedora-fade-in to new spinfinity pluginRay Strode2008-05-246-0/+524
The idea is to make a plugin that matches mockups done by Mike Langlie. The mockups feature a throbber that spins in the shape of an infinity sign. This is just a placeholder. Most of the mockup isn't implemented yet.