Global Lender
A Pebble app for finding new and interesting loans on kiva.org
WndDataMenu.h
Go to the documentation of this file.
1 #pragma once
2 #include <pebble.h>
3 #include "libs/magpebapp.h"
4 
5 
6 typedef struct WndDataMenu_Palette {
7  GColor normalBack;
8  GColor normalFore;
9  GColor highltBack;
10  GColor highltFore;
12 
13 
14 typedef struct WndDataMenu WndDataMenu;
15 
16 
17 
18 
21 MagPebApp_ErrCode WndDataMenu_setSectionTitle(WndDataMenu* this, const uint16_t, const char*);
22 MagPebApp_ErrCode WndDataMenu_buildSection(WndDataMenu* this, const uint16_t, const uint16_t, const char*);
23 MagPebApp_ErrCode WndDataMenu_buildRow(WndDataMenu* this, const uint16_t, const uint16_t, const char*, const char*);
25 
MagPebApp_ErrCode WndDataMenu_buildSection(WndDataMenu *this, const uint16_t, const uint16_t, const char *)
Definition: WndDataMenu.c:475
MagPebApp_ErrCode WndDataMenu_push(WndDataMenu *this)
Definition: WndDataMenu.c:629
MagPebApp_ErrCode WndDataMenu_buildRow(WndDataMenu *this, const uint16_t, const uint16_t, const char *, const char *)
Definition: WndDataMenu.c:577
MagPebApp_ErrCode WndDataMenu_destroy(WndDataMenu *this)
Definition: WndDataMenu.c:723
struct WndDataMenu_Palette WndDataMenu_Palette
Definition: WndDataMenu_Internal.h:14
MagPebApp_ErrCode WndDataMenu_setSectionTitle(WndDataMenu *this, const uint16_t, const char *)
Definition: WndDataMenu.c:425
MagPebApp_ErrCode
Definition: magpebapp.h:12
MagPebApp_ErrCode WndDataMenu_updateView(WndDataMenu *this)
Definition: WndDataMenu.c:320
MagPebApp_ErrCode WndDataMenu_setPalette(WndDataMenu *this, const WndDataMenu_Palette)
Definition: WndDataMenu.c:620
MagPebApp_ErrCode WndDataMenu_setNumSections(WndDataMenu *this, const uint16_t)
Definition: WndDataMenu.c:337
WndDataMenu * WndDataMenu_create()
Creates a data menu window and pushes it on the window stack.
Definition: WndDataMenu.c:639
GColor highltBack
Definition: WndDataMenu.h:9
Definition: WndDataMenu.h:6
GColor normalFore
Definition: WndDataMenu.h:8
GColor normalBack
Definition: WndDataMenu.h:7
GColor highltFore
Definition: WndDataMenu.h:10