]> git.saurik.com Git - wxWidgets.git/blame - src/generic/hyperlinkg.cpp
disable VC6 warning C4284; put all warning disable pragmas together
[wxWidgets.git] / src / generic / hyperlinkg.cpp
CommitLineData
17e91437 1/////////////////////////////////////////////////////////////////////////////
c105dda0 2// Name: src/generic/hyperlinkg.cpp
17e91437
VZ
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// ============================================================================
13// declarations
14// ============================================================================
15
16//---------------------------------------------------------------------------
17// Pre-compiled header stuff
18//---------------------------------------------------------------------------
19
17e91437
VZ
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
3cb3b8b8 24 #pragma hdrstop
17e91437
VZ
25#endif
26
98159dd8
WS
27#if wxUSE_HYPERLINKCTRL
28
17e91437
VZ
29//---------------------------------------------------------------------------
30// Includes
31//---------------------------------------------------------------------------
32
33#include "wx/hyperlink.h"
17e91437 34
98159dd8
WS
35#ifndef WX_PRECOMP
36 #include "wx/utils.h" // for wxLaunchDefaultBrowser
33f9f48e
WS
37 #include "wx/dcclient.h"
38 #include "wx/menu.h"
39 #include "wx/log.h"
28f92d74 40 #include "wx/dataobj.h"
98159dd8 41#endif
17e91437 42
98159dd8 43#include "wx/clipbrd.h"
17e91437
VZ
44
45// ============================================================================
46// implementation
47// ============================================================================
48
c105dda0 49IMPLEMENT_DYNAMIC_CLASS(wxGenericHyperlinkCtrl, wxControl)
17e91437
VZ
50
51// reserved for internal use only
c105dda0 52#define wxHYPERLINK_POPUP_COPY_ID 16384
b85db900 53
17e91437 54// ----------------------------------------------------------------------------
c105dda0 55// wxGenericHyperlinkCtrl
17e91437
VZ
56// ----------------------------------------------------------------------------
57
c105dda0 58bool wxGenericHyperlinkCtrl::Create(wxWindow *parent, wxWindowID id,
17e91437
VZ
59 const wxString& label, const wxString& url, const wxPoint& pos,
60 const wxSize& size, long style, const wxString& name)
61{
c105dda0
VZ
62 // do validation checks:
63 CheckParams(label, url, style);
914f5157 64
6d020baf
PC
65 if ((style & wxHL_ALIGN_LEFT) == 0)
66 style |= wxFULL_REPAINT_ON_RESIZE;
67
17e91437
VZ
68 if (!wxControl::Create(parent, id, pos, size, style, wxDefaultValidator, name))
69 return false;
70
71 // set to non empty strings both the url and the label
c105dda0
VZ
72 SetURL(url.empty() ? label : url);
73 SetLabel(label.empty() ? url : label);
17e91437 74
17e91437
VZ
75 m_rollover = false;
76 m_clicking = false;
77 m_visited = false;
78
79 // colours
80 m_normalColour = *wxBLUE;
81 m_hoverColour = *wxRED;
82 SetForegroundColour(m_normalColour);
83
84 // by default the font of an hyperlink control is underlined
85 wxFont f = GetFont();
86 f.SetUnderlined(true);
87 SetFont(f);
88
170acdc9 89 SetInitialSize(size);
c105dda0
VZ
90
91
92 // connect our event handlers:
93 // NOTE: since this class is the base class of the GTK+'s native implementation
94 // of wxHyperlinkCtrl, we cannot use the static macros in BEGIN/END_EVENT_TABLE
95 // blocks, otherwise the GTK+'s native impl of wxHyperlinkCtrl would not
96 // behave correctly (as we intercept events doing things which interfere
97 // with GTK+'s native handling):
98
99 Connect( wxEVT_PAINT, wxPaintEventHandler(wxGenericHyperlinkCtrl::OnPaint) );
c105dda0
VZ
100 Connect( wxEVT_LEAVE_WINDOW, wxMouseEventHandler(wxGenericHyperlinkCtrl::OnLeaveWindow) );
101
102 Connect( wxEVT_LEFT_DOWN, wxMouseEventHandler(wxGenericHyperlinkCtrl::OnLeftDown) );
103 Connect( wxEVT_LEFT_UP, wxMouseEventHandler(wxGenericHyperlinkCtrl::OnLeftUp) );
104 Connect( wxEVT_RIGHT_UP, wxMouseEventHandler(wxGenericHyperlinkCtrl::OnRightUp) );
105 Connect( wxEVT_MOTION, wxMouseEventHandler(wxGenericHyperlinkCtrl::OnMotion) );
106
107 Connect( wxHYPERLINK_POPUP_COPY_ID, wxEVT_COMMAND_MENU_SELECTED,
108 wxCommandEventHandler(wxGenericHyperlinkCtrl::OnPopUpCopy) );
109
17e91437
VZ
110 return true;
111}
112
c105dda0 113wxSize wxGenericHyperlinkCtrl::DoGetBestSize() const
17e91437
VZ
114{
115 int w, h;
116
117 wxClientDC dc((wxWindow *)this);
118 dc.SetFont(GetFont());
119 dc.GetTextExtent(GetLabel(), &w, &h);
120
b4b5a92e
RD
121 wxSize best(w, h);
122 CacheBestSize(best);
123 return best;
17e91437
VZ
124}
125
17e91437 126
c105dda0 127void wxGenericHyperlinkCtrl::SetNormalColour(const wxColour &colour)
17e91437
VZ
128{
129 m_normalColour = colour;
130 if (!m_visited)
131 {
132 SetForegroundColour(m_normalColour);
133 Refresh();
134 }
135}
136
c105dda0 137void wxGenericHyperlinkCtrl::SetVisitedColour(const wxColour &colour)
17e91437
VZ
138{
139 m_visitedColour = colour;
140 if (m_visited)
141 {
142 SetForegroundColour(m_visitedColour);
143 Refresh();
144 }
145}
146
c105dda0 147void wxGenericHyperlinkCtrl::DoContextMenu(const wxPoint &pos)
17e91437
VZ
148{
149 wxMenu *menuPopUp = new wxMenu(wxEmptyString, wxMENU_TEAROFF);
28dd9a9d 150 menuPopUp->Append(wxHYPERLINK_POPUP_COPY_ID, _("&Copy URL"));
17e91437
VZ
151 PopupMenu( menuPopUp, pos );
152 delete menuPopUp;
153}
154
c105dda0 155wxRect wxGenericHyperlinkCtrl::GetLabelRect() const
914f5157
VZ
156{
157 // our best size is always the size of the label without borders
158 wxSize c(GetClientSize()), b(GetBestSize());
159 wxPoint offset;
160
161 // the label is always centered vertically
162 offset.y = (c.GetHeight()-b.GetHeight())/2;
163
164 if (HasFlag(wxHL_ALIGN_CENTRE))
165 offset.x = (c.GetWidth()-b.GetWidth())/2;
166 else if (HasFlag(wxHL_ALIGN_RIGHT))
167 offset.x = c.GetWidth()-b.GetWidth();
168 else if (HasFlag(wxHL_ALIGN_LEFT))
169 offset.x = 0;
170 return wxRect(offset, b);
171}
172
17e91437
VZ
173
174
175// ----------------------------------------------------------------------------
c105dda0 176// wxGenericHyperlinkCtrl - event handlers
17e91437
VZ
177// ----------------------------------------------------------------------------
178
c105dda0 179void wxGenericHyperlinkCtrl::OnPaint(wxPaintEvent& WXUNUSED(event))
17e91437
VZ
180{
181 wxPaintDC dc(this);
182 dc.SetFont(GetFont());
183 dc.SetTextForeground(GetForegroundColour());
184 dc.SetTextBackground(GetBackgroundColour());
914f5157
VZ
185
186 dc.DrawText(GetLabel(), GetLabelRect().GetTopLeft());
17e91437
VZ
187}
188
c105dda0 189void wxGenericHyperlinkCtrl::OnLeftDown(wxMouseEvent& event)
17e91437 190{
914f5157 191 // the left click must start from the hyperlink rect
22a35096 192 m_clicking = GetLabelRect().Contains(event.GetPosition());
17e91437
VZ
193}
194
c105dda0 195void wxGenericHyperlinkCtrl::OnLeftUp(wxMouseEvent& event)
17e91437 196{
914f5157 197 // the click must be started and ended in the hyperlink rect
22a35096 198 if (!m_clicking || !GetLabelRect().Contains(event.GetPosition()))
914f5157 199 return;
17e91437
VZ
200
201 SetForegroundColour(m_visitedColour);
202 m_visited = true;
203 m_clicking = false;
204
205 // send the event
c105dda0 206 SendEvent();
17e91437
VZ
207}
208
c105dda0 209void wxGenericHyperlinkCtrl::OnRightUp(wxMouseEvent& event)
17e91437
VZ
210{
211 if( GetWindowStyle() & wxHL_CONTEXTMENU )
22a35096 212 if ( GetLabelRect().Contains(event.GetPosition()) )
914f5157 213 DoContextMenu(wxPoint(event.m_x, event.m_y));
17e91437
VZ
214}
215
c105dda0 216void wxGenericHyperlinkCtrl::OnMotion(wxMouseEvent& event)
17e91437 217{
914f5157
VZ
218 wxRect textrc = GetLabelRect();
219
22a35096 220 if (textrc.Contains(event.GetPosition()))
914f5157
VZ
221 {
222 SetCursor(wxCursor(wxCURSOR_HAND));
223 SetForegroundColour(m_hoverColour);
224 m_rollover = true;
225 Refresh();
226 }
227 else if (m_rollover)
228 {
229 SetCursor(*wxSTANDARD_CURSOR);
230 SetForegroundColour(!m_visited ? m_normalColour : m_visitedColour);
231 m_rollover = false;
232 Refresh();
233 }
17e91437
VZ
234}
235
c105dda0 236void wxGenericHyperlinkCtrl::OnLeaveWindow(wxMouseEvent& WXUNUSED(event) )
17e91437 237{
914f5157
VZ
238 // NB: when the label rect and the client size rect have the same
239 // height this function is indispensable to remove the "rollover"
240 // effect as the OnMotion() event handler could not be called
241 // in that case moving the mouse out of the label vertically...
242
17e91437
VZ
243 if (m_rollover)
244 {
914f5157 245 SetCursor(*wxSTANDARD_CURSOR);
17e91437
VZ
246 SetForegroundColour(!m_visited ? m_normalColour : m_visitedColour);
247 m_rollover = false;
248 Refresh();
249 }
250}
251
c105dda0 252void wxGenericHyperlinkCtrl::OnPopUpCopy( wxCommandEvent& WXUNUSED(event) )
17e91437 253{
3cb3b8b8 254#if wxUSE_CLIPBOARD
17e91437
VZ
255 if (!wxTheClipboard->Open())
256 return;
257
258 wxTextDataObject *data = new wxTextDataObject( m_url );
259 wxTheClipboard->SetData( data );
260 wxTheClipboard->Close();
3cb3b8b8 261#endif // wxUSE_CLIPBOARD
17e91437
VZ
262}
263
264#endif // wxUSE_HYPERLINKCTRL