Go to the source code of this file.
Functions | |
void | pagebar_init () |
void | pagebar_reset () |
void | pagebar_goto_page (int page) |
void | pagebar_set_pagecount (int count) |
void | pagebar_redraw () |
void | pagebar_startTimer () |
void | pagebar_stopTimer () |
<File description>="">
Definition in file pagebar.h.
void pagebar_goto_page | ( | int | page | ) |
Request from contentLister to goto page
page | - page to go to |
Definition at line 55 of file pagebar.c.
00056 { 00057 CL_IPCPRINTF("entry %d", page); 00058 pbSetCurrentPage(erPagebarChannel, ER_CONTENT_LISTER_UA_ID, page); 00059 }
void pagebar_init | ( | ) |
Open communication channel with pageBar deamon counts on the fact that pageBar is running
Definition at line 41 of file pagebar.c.
00042 { 00043 CL_IPCPRINTF("entry"); 00044 erIpcStartClient(ER_PAGEBAR_CHANNEL, &erPagebarChannel); 00045 }
void pagebar_redraw | ( | ) |
Request from contentLister to redraw pagebar
- |
Definition at line 70 of file pagebar.c.
00071 { 00072 CL_IPCPRINTF("redraw"); 00073 pbRedraw(erPagebarChannel, ER_CONTENT_LISTER_UA_ID); 00074 }
void pagebar_reset | ( | ) |
Resets the internal pageBar variables to their defaults also tells the pageBar that the contentLister is now currentApp
Definition at line 48 of file pagebar.c.
00049 { 00050 CL_IPCPRINTF("entry"); 00051 pbReset(erPagebarChannel, ER_CONTENT_LISTER_UA_ID); 00052 }
void pagebar_set_pagecount | ( | int | count | ) |
Request from contentLister to set number of pages
count | - number of pages in current view |
Definition at line 62 of file pagebar.c.
00063 { 00064 CL_IPCPRINTF("entry %d", count); 00065 pbSetPageCount(erPagebarChannel, ER_CONTENT_LISTER_UA_ID, count); 00066 00067 }
void pagebar_startTimer | ( | ) |
Request from contentLister to start progress timer
- |
void pagebar_stopTimer | ( | ) |
Request from contentLister to start progress timer
- |