summaryrefslogtreecommitdiffstats
path: root/src/splash-plugins/text/plugin.c
Commit message (Collapse)AuthorAgeFilesLines
* Move text plugin over to new draw/erase handlersRay Strode2008-07-291-0/+30
|
* Clear screen to black before asking for passwordRay Strode2008-07-011-0/+1
|
* Change colors of text splash screen to configured colorsRay Strode2008-06-261-0/+10
| | | | We pass colors into configure, so we should use them
* Add blue background to text pluginRay Strode2008-06-261-0/+2
|
* Properly stop animation when asking for password in text pluginRay Strode2008-06-251-5/+16
|
* change over text plugin to use pulsing progress barRay Strode2008-06-211-23/+40
|
* use window hide/show cursor functions in text pluginRay Strode2008-06-201-16/+2
|
* Use libplybootsplash clear screen functionRay Strode2008-06-201-10/+3
|
* Center dots in text pluginRay Strode2008-06-191-1/+29
|
* Hide cursor and clear screen in text pluginRay Strode2008-06-181-0/+27
|
* Write to stdout instead of tty1 for text pluginRay Strode2008-06-111-21/+1
|
* Port password handling over to using new answer objectRay Strode2008-06-021-10/+8
|
* Drop line editing plugin vtable functions. Use window directly.Ray Strode2008-05-291-34/+45
| | | | | | | | | | | | | | | | 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/+225
Just makes things more consistent.