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
8 // Copyright: (c) 2005 David Norris
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_GENERICHYPERLINKCTRL_H_
13 #define _WX_GENERICHYPERLINKCTRL_H_
15 // ----------------------------------------------------------------------------
16 // wxGenericHyperlinkCtrl
17 // ----------------------------------------------------------------------------
19 class WXDLLIMPEXP_ADV wxGenericHyperlinkCtrl
: public wxHyperlinkCtrlBase
22 // Default constructor (for two-step construction).
23 wxGenericHyperlinkCtrl() { Init(); }
26 wxGenericHyperlinkCtrl(wxWindow
*parent
,
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
)
35 (void) Create(parent
, id
, label
, url
, pos
, size
, style
, name
);
38 // Creation function (for two-step construction).
39 bool Create(wxWindow
*parent
,
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
);
49 wxColour
GetHoverColour() const { return m_hoverColour
; }
50 void SetHoverColour(const wxColour
&colour
) { m_hoverColour
= colour
; }
52 wxColour
GetNormalColour() const { return m_normalColour
; }
53 void SetNormalColour(const wxColour
&colour
);
55 wxColour
GetVisitedColour() const { return m_visitedColour
; }
56 void SetVisitedColour(const wxColour
&colour
);
58 wxString
GetURL() const { return m_url
; }
59 void SetURL (const wxString
&url
) { m_url
=url
; }
61 void SetVisited(bool visited
= true) { m_visited
=visited
; }
62 bool GetVisited() const { return m_visited
; }
64 // NOTE: also wxWindow::Set/GetLabel, wxWindow::Set/GetBackgroundColour,
65 // wxWindow::Get/SetFont, wxWindow::Get/SetCursor are important !
69 // Helper used by this class itself and native MSW implementation that
70 // connects OnRightUp() and OnPopUpCopy() handlers.
71 void ConnectMenuHandlers();
75 // Renders the hyperlink.
76 void OnPaint(wxPaintEvent
& event
);
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;
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
);
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
);
94 // Changes the cursor to a hand, if the mouse is inside the label's
96 void OnMotion(wxMouseEvent
& event
);
98 // Changes the cursor back to the default, if necessary.
99 void OnLeaveWindow(wxMouseEvent
& event
);
101 // handles "Copy URL" menuitem
102 void OnPopUpCopy(wxCommandEvent
& event
);
104 // overridden base class virtuals
106 // Returns the best size for the window, which is the size needed
107 // to display the text label.
108 virtual wxSize
DoGetBestClientSize() const;
110 // creates a context menu with "Copy URL" menuitem
111 virtual void DoContextMenu(const wxPoint
&);
114 // Common part of all ctors.
117 // URL associated with the link. This is transmitted inside
118 // the HyperlinkEvent fired when the user clicks on the label.
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
;
128 // True if the mouse cursor is inside the label's bounding box.
131 // True if the link has been clicked before.
134 // True if a click is in progress (left button down) and the click
135 // originated inside the label's bounding box.
139 #endif // _WX_GENERICHYPERLINKCTRL_H_