
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 () |
Copyright (C) 2005-2008 iRex Technologies B.V. All rights reserved.
<File description>="">
Definition in file pagebar.h.
| void pagebar_goto_page | ( | int | page | ) |
Request from setup to goto page
| page | - page to go to |
Definition at line 54 of file pagebar.c.
00055 { 00056 ST_IPCPRINTF("entry %d", page); 00057 pbSetCurrentPage(erPagebarChannel, ER_SETUP_UA_ID, page); 00058 }

| void pagebar_init | ( | ) |
Open communication channel with pageBar deamon counts on the fact that pageBar is running
Definition at line 40 of file pagebar.c.
00041 { 00042 ST_IPCPRINTF("entry"); 00043 erIpcStartClient(ER_PAGEBAR_CHANNEL, &erPagebarChannel); 00044 }

| void pagebar_redraw | ( | ) |
Request from setup to redraw pagebar
| - |
Definition at line 69 of file pagebar.c.
00070 { 00071 ST_IPCPRINTF("redraw"); 00072 pbRedraw(erPagebarChannel, ER_SETUP_UA_ID); 00073 }

| void pagebar_reset | ( | ) |
Resets the internal pageBar variables to their defaults also tells the pageBar that setup is now currentApp
Definition at line 47 of file pagebar.c.
00048 { 00049 ST_IPCPRINTF("entry"); 00050 pbReset(erPagebarChannel, ER_SETUP_UA_ID); 00051 }

| void pagebar_set_pagecount | ( | int | count | ) |
Request from setup to set number of pages
| count | - number of pages in current view |
Definition at line 61 of file pagebar.c.
00062 { 00063 ST_IPCPRINTF("entry %d", count); 00064 pbSetPageCount(erPagebarChannel, ER_SETUP_UA_ID, count); 00065 00066 }

1.5.6