]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: hyperlink.h | |
e54c96f1 | 3 | // Purpose: interface of wxHyperlinkEvent |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxHyperlinkEvent | |
7c913512 | 11 | |
23324ae1 FM |
12 | This event class is used for the events generated by |
13 | wxHyperlinkCtrl. | |
7c913512 | 14 | |
23324ae1 FM |
15 | @library{wxadv} |
16 | @category{FIXME} | |
17 | */ | |
18 | class wxHyperlinkEvent : public wxCommandEvent | |
19 | { | |
20 | public: | |
21 | /** | |
22 | The constructor is not normally used by the user code. | |
23 | */ | |
4cc4bfaf FM |
24 | wxHyperlinkEvent(wxObject* generator, int id, |
25 | const wxString& url); | |
23324ae1 FM |
26 | |
27 | /** | |
28 | Returns the URL of the hyperlink where the user has just clicked. | |
29 | */ | |
328f5751 | 30 | wxString GetURL() const; |
23324ae1 FM |
31 | |
32 | /** | |
33 | Sets the URL associated with the event. | |
34 | */ | |
4cc4bfaf | 35 | void SetURL(const wxString& url); |
23324ae1 FM |
36 | }; |
37 | ||
38 | ||
e54c96f1 | 39 | |
23324ae1 FM |
40 | /** |
41 | @class wxHyperlinkCtrl | |
7c913512 | 42 | |
23324ae1 FM |
43 | This class shows a static text element which links to an URL. |
44 | Appearance and behaviour is completely customizable. In fact, when the user | |
45 | clicks on the hyperlink, a wxHyperlinkEvent is | |
46 | sent but if that event is not handled (or it's skipped; see | |
47 | wxEvent::Skip), then a call to | |
e54c96f1 | 48 | wxLaunchDefaultBrowser() is done with the |
23324ae1 | 49 | hyperlink's URL. |
7c913512 | 50 | |
23324ae1 FM |
51 | Note that standard wxWindow functions like wxWindow::SetBackgroundColour, |
52 | wxWindow::SetFont, wxWindow::SetCursor, wxWindow::SetLabel can be used to customize appearance of the hyperlink. | |
7c913512 | 53 | |
23324ae1 | 54 | @beginStyleTable |
8c6791e4 | 55 | @style{wxHL_ALIGN_LEFT} |
23324ae1 | 56 | Align the text to the left. |
8c6791e4 | 57 | @style{wxHL_ALIGN_RIGHT} |
23324ae1 | 58 | Align the text to the right. |
8c6791e4 | 59 | @style{wxHL_ALIGN_CENTRE} |
23324ae1 | 60 | Center the text (horizontally). |
8c6791e4 | 61 | @style{wxHL_CONTEXTMENU} |
23324ae1 FM |
62 | Pop up a context menu when the hyperlink is right-clicked. The |
63 | context menu contains a "Copy URL" menu item which is automatically | |
64 | handled by the hyperlink and which just copies in the clipboard the | |
65 | URL (not the label) of the control. | |
8c6791e4 | 66 | @style{wxHL_DEFAULT_STYLE} |
23324ae1 FM |
67 | The default style for wxHyperlinkCtrl: |
68 | wxBORDER_NONE|wxHL_CONTEXTMENU|wxHL_ALIGN_CENTRE. | |
69 | @endStyleTable | |
7c913512 | 70 | |
23324ae1 FM |
71 | @library{wxadv} |
72 | @category{ctrl} | |
7e59b885 | 73 | @appearance{hyperlinkctrl.png} |
7c913512 | 74 | |
e54c96f1 | 75 | @see wxURL, wxHyperlinkEvent |
23324ae1 FM |
76 | */ |
77 | class wxHyperlinkCtrl : public wxControl | |
78 | { | |
79 | public: | |
a6052817 FM |
80 | /** |
81 | Constructor. See Create() for more info. | |
82 | */ | |
83 | wxHyperLink(wxWindow* parent, wxWindowID id, | |
84 | const wxString& label, | |
85 | const wxString& url, | |
86 | const wxPoint& pos = wxDefaultPosition, | |
87 | const wxSize& size = wxDefaultSize, | |
88 | long style = wxHL_DEFAULT_STYLE, | |
89 | const wxString& name = "hyperlink"); | |
90 | ||
23324ae1 FM |
91 | /** |
92 | Creates the hyperlink control. | |
3c4f71cc | 93 | |
7c913512 | 94 | @param parent |
4cc4bfaf | 95 | Parent window. Must not be @NULL. |
7c913512 | 96 | @param id |
4cc4bfaf | 97 | Window identifier. A value of wxID_ANY indicates a default value. |
7c913512 | 98 | @param label |
4cc4bfaf | 99 | The label of the hyperlink. |
7c913512 | 100 | @param url |
4cc4bfaf | 101 | The URL associated with the given label. |
7c913512 | 102 | @param pos |
4cc4bfaf | 103 | Window position. |
7c913512 | 104 | @param size |
4cc4bfaf FM |
105 | Window size. If the wxDefaultSize is specified then the window is sized |
106 | appropriately. | |
7c913512 | 107 | @param style |
4cc4bfaf | 108 | Window style. See wxHyperlinkCtrl. |
7c913512 | 109 | @param validator |
4cc4bfaf | 110 | Window validator. |
7c913512 | 111 | @param name |
4cc4bfaf | 112 | Window name. |
23324ae1 FM |
113 | */ |
114 | bool Create(wxWindow* parent, wxWindowID id, | |
4cc4bfaf FM |
115 | const wxString& label, |
116 | const wxString& url, | |
23324ae1 FM |
117 | const wxPoint& pos = wxDefaultPosition, |
118 | const wxSize& size = wxDefaultSize, | |
a6052817 | 119 | long style = wxHL_DEFAULT_STYLE, |
23324ae1 FM |
120 | const wxString& name = "hyperlink"); |
121 | ||
122 | /** | |
123 | Returns the colour used to print the label of the hyperlink when the mouse is | |
124 | over the control. | |
125 | */ | |
adaaa686 | 126 | virtual wxColour GetHoverColour() const; |
23324ae1 FM |
127 | |
128 | /** | |
129 | Returns the colour used to print the label when the link has never been clicked | |
130 | before | |
131 | (i.e. the link has not been @e visited) and the mouse is not over the control. | |
132 | */ | |
adaaa686 | 133 | virtual wxColour GetNormalColour() const; |
23324ae1 FM |
134 | |
135 | /** | |
136 | Returns the URL associated with the hyperlink. | |
137 | */ | |
adaaa686 | 138 | virtual wxString GetURL() const; |
23324ae1 FM |
139 | |
140 | /** | |
141 | Returns @true if the hyperlink has already been clicked by the user at least | |
142 | one time. | |
143 | */ | |
a6052817 | 144 | virtual bool GetVisited() const = 0; |
23324ae1 FM |
145 | |
146 | /** | |
147 | Returns the colour used to print the label when the mouse is not over the | |
148 | control | |
149 | and the link has already been clicked before (i.e. the link has been @e | |
150 | visited). | |
151 | */ | |
adaaa686 | 152 | virtual wxColour GetVisitedColour() const; |
23324ae1 FM |
153 | |
154 | /** | |
155 | Sets the colour used to print the label of the hyperlink when the mouse is over | |
156 | the control. | |
157 | */ | |
adaaa686 | 158 | virtual void SetHoverColour(const wxColour& colour); |
23324ae1 FM |
159 | |
160 | /** | |
161 | Sets the colour used to print the label when the link has never been clicked | |
162 | before | |
163 | (i.e. the link has not been @e visited) and the mouse is not over the control. | |
164 | */ | |
adaaa686 | 165 | virtual void SetNormalColour(const wxColour& colour); |
23324ae1 FM |
166 | |
167 | /** | |
168 | Sets the URL associated with the hyperlink. | |
169 | */ | |
adaaa686 | 170 | virtual void SetURL(const wxString& url); |
23324ae1 FM |
171 | |
172 | /** | |
173 | Marks the hyperlink as visited (see wxHyperlinkCtrl::SetVisitedColour). | |
174 | */ | |
a6052817 | 175 | virtual void SetVisited(bool visited = true) = 0; |
23324ae1 FM |
176 | |
177 | /** | |
178 | Sets the colour used to print the label when the mouse is not over the control | |
179 | and the link has already been clicked before (i.e. the link has been @e | |
180 | visited). | |
181 | */ | |
adaaa686 | 182 | virtual void SetVisitedColour(const wxColour& colour); |
23324ae1 | 183 | }; |
e54c96f1 | 184 |