-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathtoolbox.h
72 lines (57 loc) · 1.58 KB
/
toolbox.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
/*
Pencil2D - Traditional Animation Software
Copyright (C) 2005-2007 Patrick Corrieri & Pascal Naidon
Copyright (C) 2012-2020 Matthew Chiawen Chang
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; version 2 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
*/
#ifndef TOOLBOXWIDGET_H
#define TOOLBOXWIDGET_H
#include "pencildef.h"
#include "basedockwidget.h"
class QToolButton;
class QGridLayout;
class QIcon;
class SpinSlider;
class DisplayOptionWidget;
class ToolOptionWidget;
class Editor;
namespace Ui {
class ToolBoxWidget;
}
class ToolBoxWidget : public BaseDockWidget
{
Q_OBJECT
public:
ToolBoxWidget(QWidget* parent);
~ToolBoxWidget() override;
void initUI() override;
void updateUI() override;
public slots:
void onToolSetActive(ToolType toolType);
void onLayerDidChange(int index);
void onSelectionChanged();
void pencilOn();
void eraserOn();
void selectOn();
void moveOn();
void penOn();
void handOn();
void polylineOn();
void bucketOn();
void eyedropperOn();
void brushOn();
void smudgeOn();
protected:
int getMinHeightForWidth(int width) override;
private:
void deselectAllTools();
bool toolOn(ToolType toolType, QToolButton* toolButton);
Ui::ToolBoxWidget* ui = nullptr;
};
#endif