summaryrefslogtreecommitdiffstats
path: root/src/libplybootsplash
Commit message (Collapse)AuthorAgeFilesLines
* Add an entry controlRay Strode2008-08-013-1/+304
| | | | | | Right now we have some cut and paste code between the splash plugins for a password entry. This new file will move some of the repeated code into libplybootsplash.
* Add ctrl-l "redraw" hot keyRay Strode2008-07-291-0/+14
|
* Make fade-in plugin provide erase/draw handlersRay Strode2008-07-291-3/+4
|
* Add new hooks for clearing and drawing parts of the screenRay Strode2008-07-292-0/+81
| | | | | | | We now have a few controls in libplybootsplash that don't don't the specific details of the loaded splash plugins background. These hooks will make it possible for the controls to clear the screen prior to doing alpha composition.
* Add debugging feature to restore text paletteRay Strode2008-07-091-34/+41
|
* Don't watch tty for input in two placesRay Strode2008-06-301-6/+0
|
* Add --hide-splash optionRay Strode2008-06-271-3/+3
| | | | | We want to be able to hide the splash screen in the event the user needs to interact with start up from the console.
* restore color palette when closing windowRay Strode2008-06-261-0/+20
| | | | We should probably do it when changing vts as well
* mark look up geometry as static since it's internelRay Strode2008-06-261-1/+1
|
* move functions around to avoid prototype at topRay Strode2008-06-261-20/+18
|
* Store palette in window object and only read it once when opening deviceRay Strode2008-06-261-36/+25
|
* Change colors of text splash screen to configured colorsRay Strode2008-06-261-1/+1
| | | | We pass colors into configure, so we should use them
* Add api for messing with color palette in text modeRay Strode2008-06-262-1/+86
| | | | | This is important so we have more flexibility over what colors show up in the text splash
* Draw spindicator in a brown troughRay Strode2008-06-261-6/+23
|
* Change text pulser to use space instead of line drawing characters to preventRay Strode2008-06-251-51/+5
| | | | scramblage at font change
* add new apis to set foreground and background colors in text modeRay Strode2008-06-252-0/+76
|
* clear and move cursor to 0,0 when hiding and showingRay Strode2008-06-251-0/+5
|
* Reset cursor to 0,0 on clearRay Strode2008-06-241-0/+2
|
* Add text pulsing progress bar widget thingRay Strode2008-06-213-1/+295
|
* move show_cursor and hide_cursor to windowRay Strode2008-06-202-0/+22
|
* add ifndef guards around some definesRay Strode2008-06-201-0/+5
|
* Add clear screen method to window classRay Strode2008-06-202-0/+11
| | | | Just a convenience function for the plugins
* s/SEQUNCE/SEQUENCE/Ray Strode2008-06-201-2/+2
|
* Fix the ply_window_set_text_cursor_position functionRay Strode2008-06-191-4/+7
|
* Don't unwatch a signal if there is no loopRay Strode2008-06-191-1/+2
|
* initialize structure to 0Ray Strode2008-06-191-1/+1
|
* add new api for moving text cursor aroundRay Strode2008-06-192-0/+15
|
* Add new api for reading text window geometryRay Strode2008-06-181-0/+39
|
* add start of text gettersRay Strode2008-06-182-0/+12
|
* Make new line return to column 0Ray Strode2008-06-181-0/+3
|
* Don't go to text mode on exit.Kristian Høgsberg2008-06-161-3/+0
|
* Factor out background drawing code in throbber helper.Kristian Høgsberg2008-06-161-5/+11
|
* Use proper gradient color stops for spinfinityRay Strode2008-06-162-3/+6
|
* Move throbber to libplybootsplashRay Strode2008-06-123-2/+390
|
* Try to open the frame buffer every time we set graphics modeRay Strode2008-06-111-1/+2
| | | | It may fail initially and work later
* force text mode if debuggingRay Strode2008-06-091-0/+3
|
* Create new libplybootsplashRay Strode2008-06-096-0/+985
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.