-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy paththumbnailctrl.h
554 lines (399 loc) · 16.8 KB
/
thumbnailctrl.h
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
/////////////////////////////////////////////////////////////////////////////
// Name: thumbnailctrl.h
// Purpose: Displays a scrolling window of thumbnails
// Author: Julian Smart
// Modified by: Anil Kumar
// Created: 03/08/04 17:22:46
// RCS-ID:
// Copyright: (c) Julian Smart
// Licence: wxWidgets Licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_THUMBNAILCTRL_H_
#define _WX_THUMBNAILCTRL_H_
#if defined(__GNUG__) && !defined(__APPLE__)
#pragma interface "thumbnailctrl.cpp"
#endif
#include "wx/dynarray.h"
/*!
* Includes
*/
/*!
* Styles and flags
*/
/* Styles
*/
#define wxTH_MULTIPLE_SELECT 0x0010
#define wxTH_SINGLE_SELECT 0x0000
#define wxTH_TEXT_LABEL 0x0020
#define wxTH_IMAGE_LABEL 0x0040
#define wxTH_EXTENSION_LABEL 0x0080
/* Flags
*/
#define wxTHUMBNAIL_SHIFT_DOWN 0x01
#define wxTHUMBNAIL_CTRL_DOWN 0x02
#define wxTHUMBNAIL_ALT_DOWN 0x04
/* Defaults
*/
#define wxTHUMBNAIL_DEFAULT_OVERALL_SIZE wxSize(-1, -1)
#define wxTHUMBNAIL_DEFAULT_IMAGE_SIZE wxSize(80, 80)
#define wxTHUMBNAIL_DEFAULT_SPACING 6
#define wxTHUMBNAIL_DEFAULT_MARGIN 3
#define wxTHUMBNAIL_DEFAULT_UNFOCUSSED_BACKGROUND wxColour(175, 175, 175)
#define wxTHUMBNAIL_DEFAULT_FOCUSSED_BACKGROUND wxColour(140, 140, 140)
// #define wxTHUMBNAIL_DEFAULT_UNSELECTED_BACKGROUND wxColour(205, 205, 205)
#define wxTHUMBNAIL_DEFAULT_UNSELECTED_BACKGROUND wxSystemSettings::GetColour(wxSYS_COLOUR_3DFACE)
#define wxTHUMBNAIL_DEFAULT_TYPE_COLOUR wxColour(0, 0, 200)
#define wxTHUMBNAIL_DEFAULT_TAG_COLOUR wxColour(0, 0, 255)
#define wxTHUMBNAIL_DEFAULT_FOCUS_RECT_COLOUR wxColour(100, 80, 80)
/*!
* Forward declarations
*/
class wxThumbnailCtrl;
/*!
* wxThumbnailItem class declaration
*/
// Drawing styles/states
#define wxTHUMBNAIL_SELECTED 0x01
#define wxTHUMBNAIL_TAGGED 0x02
// The control is focussed
#define wxTHUMBNAIL_FOCUSSED 0x04
// The item itself has the focus
#define wxTHUMBNAIL_IS_FOCUS 0x08
#define wxTHUMBNAIL_IS_HOVER 0x10
class wxThumbnailItem : public wxObject
{
DECLARE_CLASS(wxThumbnailItem)
public:
// Constructors
wxThumbnailItem(const wxString& filename = wxEmptyString)
{
m_filename = filename; m_state = 0;
}
// Accessors
/// Filename
void SetFilename(const wxString& filename) { m_filename = filename; m_cachedBitmap = wxNullBitmap; }
const wxString& GetFilename() const { return m_filename; }
/// State storage while sorting
void SetState(int state) { m_state = state; }
int GetState() const { return m_state; }
// Overrideables
// Refresh the item
virtual bool Refresh(wxThumbnailCtrl* ctrl, int index);
/// Draw the item
virtual bool Draw(wxDC& dc, wxThumbnailCtrl* ctrl, const wxRect& rect, int style, int index);
/// Draw the background
virtual bool DrawBackground(wxDC& dc, wxThumbnailCtrl* ctrl, const wxRect& rect, const wxRect& imageRect, int style, int index);
/// Load the thumbnail
virtual bool Load(wxThumbnailCtrl* WXUNUSED(ctrl), bool WXUNUSED(forceLoad)) { return false; }
protected:
wxBitmap m_cachedBitmap;
wxString m_filename;
int m_state; // state storage while sorting
};
/*!
* wxImageThumbnailItem class declaration
*/
class wxImageThumbnailItem : public wxThumbnailItem
{
DECLARE_CLASS(wxImageThumbnailItem)
public:
// Constructors
wxImageThumbnailItem(const wxString& filename = wxEmptyString) :
wxThumbnailItem(filename) {}
// Overrideables
/// Draw the item
virtual bool Draw(wxDC& dc, wxThumbnailCtrl* ctrl, const wxRect& rect, int style, int index);
/// Load the thumbnail
virtual bool Load(wxThumbnailCtrl* ctrl, bool forceLoad);
wxBitmap& GetCachedBitmap() { return m_cachedBitmap; }
};
WX_DECLARE_OBJARRAY(wxThumbnailItem, wxThumbnailItemArray);
/*!
* wxThumbnailCtrl class declaration
*/
class wxThumbnailCtrl : public wxScrolledWindow
{
DECLARE_CLASS(wxThumbnailCtrl)
DECLARE_EVENT_TABLE()
public:
// Constructors
wxThumbnailCtrl();
wxThumbnailCtrl(wxWindow* parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = wxTH_TEXT_LABEL | wxTH_IMAGE_LABEL | wxTH_EXTENSION_LABEL | wxBORDER_THEME);
// Operations
/// Creation
bool Create(wxWindow* parent, wxWindowID id = -1, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize,
long style = wxTH_TEXT_LABEL | wxTH_IMAGE_LABEL | wxTH_EXTENSION_LABEL | wxBORDER_THEME);
/// Member initialisation
void Init();
/// Call Freeze to prevent refresh
void Freeze();
/// Call Thaw to refresh
void Thaw();
/// Scrolls the item into view if necessary
void EnsureVisible(int n);
/// Forces a reload of this item's thumbnail image
void Reload(int n);
/// Sorts items
void Sort();
/// Show the tooltip
virtual void ShowTooltip(int n);
/// Draws the item. Normally you override function in wxThumbnailItem.
virtual bool DrawItem(int n, wxDC& dc, const wxRect& rect, int style);
/// Draws the background for the item, including bevel
virtual bool DrawItemBackground(int n, wxDC& dc, const wxRect& rect, const wxRect& imageRect, int style);
// Adding items
/// Append a single item
virtual int Append(wxThumbnailItem* item);
/// Insert a single item
virtual int Insert(wxThumbnailItem* item, int pos = 0);
// Deleting items
/// Clear all items
virtual void Clear();
/// Delete this item
virtual void Delete(int n);
// Accessing items
/// Get the number of items in the control
virtual int GetCount() const { return m_items.GetCount(); }
/// Get Items
const wxThumbnailItemArray& GetItems() const { return m_items; }
/// Is the control empty?
bool IsEmpty() const { return GetCount() == 0; }
/// Get the nth item
wxThumbnailItem* GetItem(int n);
/// Get the overall rect of the given item
/// If transform is true, rect is relative to the scroll viewport
/// (i.e. may be negative)
bool GetItemRect(int item, wxRect& rect, bool transform = true);
/// Get the image rect of the given item
bool GetItemRectImage(int item, wxRect& rect, bool transform = true);
/// Return the row and column given the client
/// size and a left-to-right, top-to-bottom layout
/// assumption
bool GetRowCol(int item, const wxSize& clientSize, int& row, int& col);
/// Get the focus item, or -1 if there is none
int GetFocusItem() const { return m_focusItem; }
/// Set the focus item
void SetFocusItem(int item);
// Selection
/// Select or deselect an item
void Select(int n, bool select = true);
/// Select or deselect a range
void SelectRange(int from, int to, bool select = true);
/// Tag or untag an item
void Tag(int n, bool tag = true);
/// Select all
void SelectAll();
/// Select none
void SelectNone();
/// Get the index of the single selection, if not multi-select.
/// Returns -1 if there is no selection.
int GetSelection() const;
/// Get indexes of all selections, if multi-select
const wxArrayInt& GetSelections() const { return m_selections; }
/// Get indexes of all tags
const wxArrayInt& GetTags() const { return m_tags; }
/// Returns true if the item is selected
bool IsSelected(int n) const;
/// Returns true if the item is tagged
bool IsTagged(int n) const;
/// Clears all selections
void ClearSelections();
/// Clears all tags
void ClearTags();
/// Get mouse hover item
int GetMouseHoverItem() const { return m_hoverItem; }
/// Find the item under the given point
bool HitTest(const wxPoint& pt, int& n);
// Visual properties
/// The overall size of the thumbnail, including decorations.
/// DON'T USE THIS from the application, since it will
/// normally be calculated by SetThumbnailImageSize.
void SetThumbnailOverallSize(const wxSize& sz) { m_thumbnailOverallSize = sz; }
const wxSize& GetThumbnailOverallSize() const { return m_thumbnailOverallSize; }
/// The size of the image part
void SetThumbnailImageSize(const wxSize& sz);
const wxSize& GetThumbnailImageSize() const { return m_thumbnailImageSize; }
/// The inter-item spacing
void SetSpacing(int spacing) { m_spacing = spacing; }
int GetSpacing() const { return m_spacing; }
/// The margin between elements within the thumbnail
void SetThumbnailMargin(int margin) { m_thumbnailMargin = margin; }
int GetThumbnailMargin() const { return m_thumbnailMargin; }
/// The height required for text in the thumbnail
void SetThumbnailTextHeight(int h) { m_thumbnailTextHeight = h; }
int GetThumbnailTextHeight() const { return m_thumbnailTextHeight; }
/// Get tag bitmap
const wxBitmap& GetTagBitmap() const { return m_tagBitmap; }
/// The focussed and unfocussed background colour for a
/// selected thumbnail
void SetSelectedThumbnailBackgroundColour(const wxColour& focussedColour, const wxColour& unfocussedColour)
{
m_focussedThumbnailBackgroundColour = focussedColour; m_unfocussedThumbnailBackgroundColour = unfocussedColour;
}
const wxColour& GetSelectedThumbnailFocussedBackgroundColour() const { return m_focussedThumbnailBackgroundColour; }
const wxColour& GetSelectedThumbnailUnfocussedBackgroundColour() const { return m_unfocussedThumbnailBackgroundColour; }
/// The unselected background colour for a thumbnail
void SetUnselectedThumbnailBackgroundColour(const wxColour& colour) { m_unselectedThumbnailBackgroundColour = colour; }
const wxColour& GetUnselectedThumbnailBackgroundColour() const { return m_unselectedThumbnailBackgroundColour; }
/// The colour for the type text (top left of thumbnail)
void SetTypeColour(const wxColour& colour) { m_typeColour = colour; }
const wxColour& GetTypeColour() const { return m_typeColour; }
/// The colour for the tag outline
void SetTagColour(const wxColour& colour) { m_tagColour = colour; }
const wxColour& GetTagColour() const { return m_tagColour; }
/// The focus rectangle pen colour
void SetFocusRectColour(const wxColour& colour) { m_focusRectColour = colour; }
const wxColour& GetFocusRectColour() const { return m_focusRectColour; }
/// The thumbnail outlines show or not
void ShowOutlines(bool flag = true) { m_showOutlines = flag; }
bool IsOutlinesShown() const { return m_showOutlines; }
// Command handlers
void OnSelectAll(wxCommandEvent& event);
void OnUpdateSelectAll(wxUpdateUIEvent& event);
protected:
// Event handlers
/// Painting
void OnPaint(wxPaintEvent& event);
void OnEraseBackground(wxEraseEvent& event);
/// Mouse-events
void OnMouse(wxMouseEvent& event);
/// Left-click-down
void OnLeftClickDown(wxMouseEvent& event);
/// Left-click-up
void OnLeftClickUp(wxMouseEvent& event);
/// Left-double-click
void OnLeftDClick(wxMouseEvent& event);
/// Mouse-motion
void OnMouseMotion(wxMouseEvent& event);
/// Mouse-leave
void OnMouseLeave(wxMouseEvent& event);
/// Right-click-down
void OnRightClickDown(wxMouseEvent& event);
/// Right-click-up
void OnRightClickUp(wxMouseEvent& event);
/// Key press
void OnChar(wxKeyEvent& event);
/// Sizing
void OnSize(wxSizeEvent& event);
/// Setting/losing focus
void OnSetFocus(wxFocusEvent& event);
void OnKillFocus(wxFocusEvent& event);
// Implementation
/// Set up scrollbars, e.g. after a resize
void SetupScrollbars();
/// Calculate the outer thumbnail size based
/// on font used for text and inner size
void CalculateOverallThumbnailSize();
/// Do (de)selection
void DoSelection(int n, int flags);
/// Keyboard navigation
virtual bool Navigate(int keyCode, int flags);
/// Scroll to see the image
void ScrollIntoView(int n, int keyCode);
/// Paint the background
void PaintBackground(wxDC& dc);
/// Recreate buffer bitmap if necessary
bool RecreateBuffer(const wxSize& size = wxDefaultSize);
/// Show mouse hover background
void ShowMouseHoverBackground(int n);
/// Hide mouse hover background
void HideMouseHoverBackground();
// Overrides
wxSize DoGetBestSize() const;
/// Thumbnails compare function
virtual int Compare(wxThumbnailItem** item1, wxThumbnailItem** item2);
// Data members
private:
/// The items
wxThumbnailItemArray m_items;
/// The selections
wxArrayInt m_selections;
/// The tags
wxArrayInt m_tags;
/// Outer size of the thumbnail item
wxSize m_thumbnailOverallSize;
/// Image size of the thumbnail item
wxSize m_thumbnailImageSize;
/// The inter-item spacing
int m_spacing;
/// The margin between the image/text and the edge of the thumbnail
int m_thumbnailMargin;
/// The height of thumbnail text in the current font
int m_thumbnailTextHeight;
/// Allows nested Freeze/Thaw
int m_freezeCount;
/// First selection in a range
int m_firstSelection;
/// Last selection
int m_lastSelection;
/// Focus item
int m_focusItem;
/// Tag marker bitmap
wxBitmap m_tagBitmap;
/// Outlines flag
bool m_showOutlines;
/// Mouse hover item
int m_hoverItem = wxNOT_FOUND;
/// Current control, used in sorting
static wxThumbnailCtrl* sm_currentThumbnailCtrl;
/// Focussed/unfocussed selected thumbnail background colours
wxColour m_focussedThumbnailBackgroundColour;
wxColour m_unfocussedThumbnailBackgroundColour;
wxColour m_unselectedThumbnailBackgroundColour;
wxColour m_focusRectColour;
/// Type text colour
wxColour m_typeColour;
/// Tag colour
wxColour m_tagColour;
/// Buffer bitmap
wxBitmap m_bufferBitmap;
/// Drag start position
wxPoint m_dragStartPosition = wxDefaultPosition;
};
/*!
* wxThumbnailEvent - the event class for wxThumbnailCtrl notifications
*/
class wxThumbnailEvent : public wxNotifyEvent
{
public:
wxThumbnailEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
: wxNotifyEvent(commandType, winid),
m_itemIndex(-1), m_flags(0)
{ }
wxThumbnailEvent(const wxThumbnailEvent& event)
: wxNotifyEvent(event),
m_itemIndex(event.m_itemIndex), m_flags(event.m_flags)
{ }
int GetIndex() const { return m_itemIndex; }
void SetIndex(int n) { m_itemIndex = n; }
const wxArrayInt& GetItemsIndex() const { return m_itemsIndex; }
void SetItemsIndex(const wxArrayInt& itemsIndex) { m_itemsIndex = itemsIndex; }
int GetFlags() const { return m_flags; }
void SetFlags(int flags) { m_flags = flags; }
const wxPoint& GetPosition() const { return m_position; }
void SetPosition(const wxPoint& position) { m_position = position; }
virtual wxEvent *Clone() const { return new wxThumbnailEvent(*this); }
protected:
int m_itemIndex;
int m_flags;
wxPoint m_position;
wxArrayInt m_itemsIndex;
private:
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxThumbnailEvent)
};
/*!
* wxThumbnailCtrl event macros
*/
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_SELECTION_CHANGED, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_ITEM_SELECTED, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_ITEM_DESELECTED, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_LEFT_CLICK, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_RIGHT_CLICK, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_VIEW_RIGHT_CLICK, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_LEFT_DCLICK, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_RETURN, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_DRAG_START, wxThumbnailEvent);
wxDECLARE_EVENT(wxEVT_COMMAND_THUMBNAIL_SORTED, wxThumbnailEvent);
#endif
// _WX_THUMBNAILCTRL_H_