]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/hyperlink.h
Fix wxStandardDialogLayoutAdapter compilation with wxUSE_BUTTON==0.
[wxWidgets.git] / include / wx / generic / hyperlink.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/hyperlink.h
3 // Purpose: Hyperlink control
4 // Author: David Norris <danorris@gmail.com>, Otto Wyss
5 // Modified by: Ryan Norton, Francesco Montorsi
6 // Created: 04/02/2005
7 // RCS-ID: $Id$
8 // Copyright: (c) 2005 David Norris
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GENERICHYPERLINKCTRL_H_
13 #define _WX_GENERICHYPERLINKCTRL_H_
14
15 // ----------------------------------------------------------------------------
16 // wxGenericHyperlinkCtrl
17 // ----------------------------------------------------------------------------
18
19 class WXDLLIMPEXP_ADV wxGenericHyperlinkCtrl : public wxHyperlinkCtrlBase
20 {
21 public:
22 // Default constructor (for two-step construction).
23 wxGenericHyperlinkCtrl() { Init(); }
24
25 // Constructor.
26 wxGenericHyperlinkCtrl(wxWindow *parent,
27 wxWindowID id,
28 const wxString& label, const wxString& url,
29 const wxPoint& pos = wxDefaultPosition,
30 const wxSize& size = wxDefaultSize,
31 long style = wxHL_DEFAULT_STYLE,
32 const wxString& name = wxHyperlinkCtrlNameStr)
33 {
34 Init();
35 (void) Create(parent, id, label, url, pos, size, style, name);
36 }
37
38 // Creation function (for two-step construction).
39 bool Create(wxWindow *parent,
40 wxWindowID id,
41 const wxString& label, const wxString& url,
42 const wxPoint& pos = wxDefaultPosition,
43 const wxSize& size = wxDefaultSize,
44 long style = wxHL_DEFAULT_STYLE,
45 const wxString& name = wxHyperlinkCtrlNameStr);
46
47
48 // get/set
49 wxColour GetHoverColour() const { return m_hoverColour; }
50 void SetHoverColour(const wxColour &colour) { m_hoverColour = colour; }
51
52 wxColour GetNormalColour() const { return m_normalColour; }
53 void SetNormalColour(const wxColour &colour);
54
55 wxColour GetVisitedColour() const { return m_visitedColour; }
56 void SetVisitedColour(const wxColour &colour);
57
58 wxString GetURL() const { return m_url; }
59 void SetURL (const wxString &url) { m_url=url; }
60
61 void SetVisited(bool visited = true) { m_visited=visited; }
62 bool GetVisited() const { return m_visited; }
63
64 // NOTE: also wxWindow::Set/GetLabel, wxWindow::Set/GetBackgroundColour,
65 // wxWindow::Get/SetFont, wxWindow::Get/SetCursor are important !
66
67
68 protected:
69 // Helper used by this class itself and native MSW implementation that
70 // connects OnRightUp() and OnPopUpCopy() handlers.
71 void ConnectMenuHandlers();
72
73 // event handlers
74
75 // Renders the hyperlink.
76 void OnPaint(wxPaintEvent& event);
77
78 // Returns the wxRect of the label of this hyperlink.
79 // This is different from the clientsize's rectangle when
80 // clientsize != bestsize and this rectangle is influenced
81 // by the alignment of the label (wxHL_ALIGN_*).
82 wxRect GetLabelRect() const;
83
84 // If the click originates inside the bounding box of the label,
85 // a flag is set so that an event will be fired when the left
86 // button is released.
87 void OnLeftDown(wxMouseEvent& event);
88
89 // If the click both originated and finished inside the bounding box
90 // of the label, a HyperlinkEvent is fired.
91 void OnLeftUp(wxMouseEvent& event);
92 void OnRightUp(wxMouseEvent& event);
93
94 // Changes the cursor to a hand, if the mouse is inside the label's
95 // bounding box.
96 void OnMotion(wxMouseEvent& event);
97
98 // Changes the cursor back to the default, if necessary.
99 void OnLeaveWindow(wxMouseEvent& event);
100
101 // handles "Copy URL" menuitem
102 void OnPopUpCopy(wxCommandEvent& event);
103
104 // overridden base class virtuals
105
106 // Returns the best size for the window, which is the size needed
107 // to display the text label.
108 virtual wxSize DoGetBestClientSize() const;
109
110 // creates a context menu with "Copy URL" menuitem
111 virtual void DoContextMenu(const wxPoint &);
112
113 private:
114 // Common part of all ctors.
115 void Init();
116
117 // URL associated with the link. This is transmitted inside
118 // the HyperlinkEvent fired when the user clicks on the label.
119 wxString m_url;
120
121 // Foreground colours for various link types.
122 // NOTE: wxWindow::m_backgroundColour is used for background,
123 // wxWindow::m_foregroundColour is used to render non-visited links
124 wxColour m_hoverColour;
125 wxColour m_normalColour;
126 wxColour m_visitedColour;
127
128 // True if the mouse cursor is inside the label's bounding box.
129 bool m_rollover;
130
131 // True if the link has been clicked before.
132 bool m_visited;
133
134 // True if a click is in progress (left button down) and the click
135 // originated inside the label's bounding box.
136 bool m_clicking;
137 };
138
139 #endif // _WX_GENERICHYPERLINKCTRL_H_