repo.or.cz
/
wvapps.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Schedulator summary now predicts release dates based on your bounce goals,
[wvapps.git]
/
photoreider
/
prnotebook.py
blob
5a2ecd26304a093b63b9d53eac950ab731bb7fdf
1
import
wx
2
from
prthing
import
*
3
4
class
PrNotebook
(
PrThing
,
wx
.
Notebook
):
5
def
__init__
(
self
,
parent
,
ID
=-
1
):
6
PrThing
.__
init
__
(
self
)
7
wx
.
Notebook
.__
init
__
(
self
,
parent
,
ID
)
8
9
def
add_page
(
self
,
page
,
title
):
10
self
.
AddPage
(
page
,
title
)