-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo
93 lines (72 loc) · 2.93 KB
/
todo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
TODO list for Wt 3.3.0
======================
Navigation > Tab widget
-----------------------
Settings: WTabWidget::setCloseable(true);
The 'Close' tab in the WTabWidget example is not closeable anymore.
Media > WFlashObject > Example - no result visible
--------------------------------------------------
Neither a video nor a static image is shown.
* WFormModel: WSpinBox - empty text
----------------------------------------
Initially, the lowest value in the spin box range is shown.
It should be possible to set an empty text initially.
-- Not easy -- what should value() then return ?
=> -1
Is it possible to show an empty text if value() returns -1?
This would only be possible in case of the default range from 0..99 or any
other range from 0.
* WFormModel: WSpinBox - default value
----------------------------------------
Initially, the lowest value in the spin box range is shown.
It would be nice if you could set a default/initial value through a different
constructor like WSpinBox (int minimum, int maximum, int default=0,
WContainerWidget *parent=0)
=> Just use setValue()?
-- Koen, the constructor would be a shorthand to create and initialize the
spinbox at once. Indeed, you can always change the value afterwards with
setValue().
WColor - missing constructors
-----------------------------
It is possible to create a RGB color with transparency with
WColor(int red, int green, int blue, int alpha = 255)
but it is not possible to create a color with transparency based on a CSS color
name or global color name like
WColor(const WString &name, int alpha=255), or
WColor(GlobalColor name, int alpha=255)
WPopupMenu used in Popup menu example - application crashes!
------------------------------------------------------------
[error] "Wt: decodeSignal(): signal 's152' not exposed"
* WMediaPlayer - no ended() signal
--------------------------------
Pushing the play button when playing generates a playbackPaused signal. (OK)
Pushing the stop button when playing generates a playbackPaused instead of a
ended signal. (Not OK)
-- Later, this seems to be a jPlayer problem
* WLineEdit
---------
Add method to set the text to selected: setTextSelected() / selectText().
-- later
Links
=====
Widget gallery > Forms > Radio Buttons
--------------------------------------
Create the target menu for the internal link
<a href="#/events" target="blank">More details on events</a>
Next for volunteers !
---------------------
* Events section
* Navigation section - Internal Paths
explain principle, internalPathChanged() signal
Postponed after 3.3.0 release
-----------------------------
* Wt::Auth, Wt::Dbo, Wt::Json, Wt::Mail, Wt::Payment
Next for Dietrich
-----------------
Navigation:
- Anchors:
* anchors in WTemplate/WText XHTML text, special support for internal paths
- Widget stack:
* building block for multi-page
Internal paths -> Koen
Static resources -> Koen