Share and Money Management 0.18devel
Functions | Variables
gui.images Namespace Reference

Functions

wx.Bitmap XPM2Bitmap (str data)
 Converts XPM data from a string into a wx.Bitmap object. More...
 
def getSmallUpArrowBitmap ()
 
def getSmallDnArrowBitmap ()
 
def getSmallGreenArrowBitmap ()
 
def getSmallRedArrowBitmap ()
 
def getSmallYellowArrowBitmap ()
 
def getBlankImageBitmap ()
 

Variables

string smallUpArrowData
 Up arrow image. More...
 
string smallDownArrowData
 Down arrow image. More...
 
string smallGreenArrowData
 Green arrow image. More...
 
string smallRedArrowData
 Red arrow image. More...
 
string smallYellowArrowData
 Yellow arrow image. More...
 
string blankImageData
 Blank image. More...
 

Function Documentation

◆ getBlankImageBitmap()

def gui.images.getBlankImageBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ getSmallDnArrowBitmap()

def gui.images.getSmallDnArrowBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ getSmallGreenArrowBitmap()

def gui.images.getSmallGreenArrowBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ getSmallRedArrowBitmap()

def gui.images.getSmallRedArrowBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ getSmallUpArrowBitmap()

def gui.images.getSmallUpArrowBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ getSmallYellowArrowBitmap()

def gui.images.getSmallYellowArrowBitmap ( )

References gui.images.XPM2Bitmap().

Here is the call graph for this function:

◆ XPM2Bitmap()

wx.Bitmap gui.images.XPM2Bitmap ( str  data)

Converts XPM data from a string into a wx.Bitmap object.

Parameters
dataString with XPM data
Returns
A wx.Bitmap

Referenced by gui.images.getBlankImageBitmap(), gui.images.getSmallDnArrowBitmap(), gui.images.getSmallGreenArrowBitmap(), gui.images.getSmallRedArrowBitmap(), gui.images.getSmallUpArrowBitmap(), and gui.images.getSmallYellowArrowBitmap().

Here is the caller graph for this function:

Variable Documentation

◆ blankImageData

string gui.images.blankImageData
Initial value:
1= """
2/* XPM */
3static char *blank_16x16[]={
4"16 16 1 1",
5". c None",
6"................",
7"................",
8"................",
9"................",
10"................",
11"................",
12"................",
13"................",
14"................",
15"................",
16"................",
17"................",
18"................",
19"................",
20"................",
21"................"};
22"""

Blank image.

◆ smallDownArrowData

string gui.images.smallDownArrowData
Initial value:
1= """
2/* XPM */
3static char *arrow_down_black_16x16[]={
4"16 16 2 1",
5". c None",
6"# c #000000",
7"................",
8"................",
9"................",
10"................",
11"................",
12"..############..",
13"...##########...",
14"....########....",
15".....######.....",
16"......####......",
17".......##.......",
18"................",
19"................",
20"................",
21"................",
22"................"};
23"""

Down arrow image.

◆ smallGreenArrowData

string gui.images.smallGreenArrowData
Initial value:
1= """
2/* XPM */
3static char *arrow_green_16x16[]={
4"16 16 2 1",
5". c None",
6"# c #00ff00",
7"................",
8"........#######.",
9"........#######.",
10"...........####.",
11"..........#####.",
12".........###.##.",
13"........###..##.",
14".......###...##.",
15"......###.......",
16".....###........",
17"....###.........",
18"...###..........",
19"...##...........",
20"................",
21"................",
22"................"};
23"""

Green arrow image.

◆ smallRedArrowData

string gui.images.smallRedArrowData
Initial value:
1= """
2/* XPM */
3static char *arrow_red_16x16[]={
4"16 16 2 1",
5". c None",
6"# c #ff0000",
7"................",
8"................",
9"................",
10"...##...........",
11"...###..........",
12"....###.........",
13".....###........",
14"......###.......",
15".......###...##.",
16"........###..##.",
17".........###.##.",
18"..........#####.",
19"...........####.",
20"........#######.",
21"........#######.",
22"................"};
23"""

Red arrow image.

◆ smallUpArrowData

string gui.images.smallUpArrowData
Initial value:
1= """
2/* XPM */
3static char *arrow_up_black_16x16[]={
4"16 16 2 1",
5". c None",
6"# c #000000",
7"................",
8"................",
9"................",
10"................",
11"................",
12".......##.......",
13"......####......",
14".....######.....",
15"....########....",
16"...##########...",
17"..############..",
18"................",
19"................",
20"................",
21"................",
22"................"};
23"""

Up arrow image.

◆ smallYellowArrowData

string gui.images.smallYellowArrowData
Initial value:
1= """
2/* XPM */
3static char *arrow_yellow_16x16[]={
4"16 16 2 1",
5". c None",
6"# c #ffff00",
7"................",
8"................",
9"................",
10"..........#.....",
11"..........##....",
12"..........###...",
13"..........####..",
14"..#############.",
15"..#############.",
16"..........####..",
17"..........###...",
18"..........##....",
19"..........#.....",
20"................",
21"................",
22"................"};
23"""

Yellow arrow image.