Home
last modified time | relevance | path

Searched refs:CheckBox (Results 1 – 25 of 2969) sorted by relevance

12345678910>>...119

/dports/audio/amarok/amarok-3e11ccdd1417e70486eaaa84d8475182eec44c20/src/scripting/scriptengine/qtbindings/
H A DGuiCheckBox.cpp23 CheckBox::CheckBox(QWidget *parent) : QCheckBox(parent) in CheckBox() function in CheckBox
27 CheckBox::CheckBox(const CheckBox &other) : QCheckBox(qobject_cast<QWidget*>( other.parent() )) in CheckBox() function in CheckBox
32 CheckBox::CheckBox(const QString &text, QWidget *parent) : QCheckBox( in CheckBox() function in CheckBox
37 CheckBox::~CheckBox() in ~CheckBox()
41 Qt::CheckState CheckBox::checkState() const in checkState()
46 bool CheckBox::isTristate() const in isTristate()
56 void CheckBox::setTristate(bool y) in setTristate()
61 void CheckBox::setEnabled(bool enabled) in setEnabled()
66 QSize CheckBox::minimumSizeHint() const in minimumSizeHint()
71 QSize CheckBox::sizeHint() const in sizeHint()
[all …]
H A DGuiCheckBox.h30 class CheckBox : public QCheckBox, public QtBindings::Base<CheckBox>
34 Q_INVOKABLE CheckBox(QWidget *parent = Q_NULLPTR);
35 Q_INVOKABLE CheckBox(const CheckBox &other);
36 Q_INVOKABLE CheckBox(const QString &text, QWidget *parent = Q_NULLPTR);
37 Q_INVOKABLE ~CheckBox();
38 CheckBox &operator=(const CheckBox &other);
50 Q_DECLARE_METATYPE(QtBindings::Gui::CheckBox)
/dports/misc/gedkeeper/GEDKeeper-2.19.1/projects/GKv3/GEDKeeper3/GKUI/Forms/
H A DOptionsDlg.design.cs15 private CheckBox chkSurname;
16 private CheckBox chkName;
17 private CheckBox chkPatronymic;
18 private CheckBox chkDiffLines;
19 private CheckBox chkBirthDate;
20 private CheckBox chkDeathDate;
21 private CheckBox chkKinship;
33 private CheckBox chkUseProxy;
53 private CheckBox chkOnlyYears;
60 private CheckBox chkNotes;
[all …]
/dports/textproc/kreport/kreport-3.2.0/src/items/check/
H A DKReportScriptCheck.cpp27 CheckBox::CheckBox(KReportItemCheckBox *c) in CheckBox() function in Scripting::CheckBox
33 CheckBox::~CheckBox() in ~CheckBox()
37 bool CheckBox::value() const in value()
42 void CheckBox::setValue(bool v) in setValue()
47 QString CheckBox::checkStyle() const in checkStyle()
66 QColor CheckBox::lineColor() const in lineColor()
75 int CheckBox::lineWeight() const in lineWeight()
84 int CheckBox::lineStyle() const in lineStyle()
88 void CheckBox::setLineStyle(int s) in setLineStyle()
96 QPointF CheckBox::position() const in position()
[all …]
/dports/deskutils/kalarm/kalarm-21.12.3/src/lib/
H A Dcheckbox.cpp18 CheckBox::CheckBox(QWidget* parent) in CheckBox() function in CheckBox
23 CheckBox::CheckBox(const QString& text, QWidget* parent) in CheckBox() function in CheckBox
32 void CheckBox::setReadOnly(bool ro) in setReadOnly()
51 connect(this, &CheckBox::clicked, this, &CheckBox::slotClicked); in setFocusWidget()
53 disconnect(this, &CheckBox::clicked, this, &CheckBox::slotClicked); in setFocusWidget()
60 int CheckBox::textIndent(QWidget* widget) in textIndent()
83 void CheckBox::slotClicked() in slotClicked()
97 void CheckBox::mousePressEvent(QMouseEvent* e) in mousePressEvent()
119 void CheckBox::mouseMoveEvent(QMouseEvent* e) in mouseMoveEvent()
125 void CheckBox::keyPressEvent(QKeyEvent* e) in keyPressEvent()
[all …]
/dports/games/manaplus/manaplus-2.1.3.17/src/gui/widgets/
H A Dcheckbox.cpp84 int CheckBox::instances = 0;
85 Skin *CheckBox::mSkin = nullptr;
86 float CheckBox::mAlpha = 1.0;
88 CheckBox::CheckBox(const Widget2 *const widget, in CheckBox() function in CheckBox
150 CheckBox::~CheckBox() in ~CheckBox()
194 CheckBox::draw(graphics); in safeDraw()
197 void CheckBox::updateAlpha() in updateAlpha()
273 void CheckBox::keyPressed(KeyEvent& event) in keyPressed()
284 void CheckBox::adjustSize() in adjustSize()
305 void CheckBox::toggleSelected() in toggleSelected()
[all …]
/dports/editors/libreoffice6/libreoffice-6.4.7.2/chart2/source/controller/sidebar/
H A DChartElementsPanel.hxx73 VclPtr<CheckBox> mpCBTitle;
74 VclPtr<CheckBox> mpCBSubtitle;
75 VclPtr<CheckBox> mpCBXAxis;
76 VclPtr<CheckBox> mpCBXAxisTitle;
77 VclPtr<CheckBox> mpCBYAxis;
78 VclPtr<CheckBox> mpCBYAxisTitle;
79 VclPtr<CheckBox> mpCBZAxis;
80 VclPtr<CheckBox> mpCBZAxisTitle;
81 VclPtr<CheckBox> mpCB2ndXAxis;
83 VclPtr<CheckBox> mpCB2ndYAxis;
[all …]
/dports/security/yapet/yapet-2.3/libyacurs/src/
H A Dcheckbox.cc81 void CheckBox::key_handler(Event& e) { in key_handler()
132 CheckBox::CheckBox(const std::string& title, in CheckBox() function in CheckBox
150 CheckBox::~CheckBox() { in ~CheckBox()
152 EventConnectorMethod1<CheckBox>(EVT_KEY, this, &CheckBox::key_handler)); in ~CheckBox()
155 bool CheckBox::selected(unsigned short i) { in selected()
203 void CheckBox::reset_size() { in reset_size()
207 void CheckBox::refresh(bool immediate) { in refresh()
242 void CheckBox::realize() { in realize()
248 EventConnectorMethod1<CheckBox>(EVT_KEY, this, &CheckBox::key_handler)); in realize()
255 void CheckBox::unrealize() { in unrealize()
[all …]
/dports/graphics/instant-meshes/instant-meshes-0.0-42-g4a083f4/ext/nanogui/python/
H A Dbutton.cpp8 DECLARE_WIDGET(CheckBox);
63 py::class_<CheckBox, Widget, ref<CheckBox>, PyCheckBox>(m, "CheckBox", D(CheckBox)) in register_button()
66 D(CheckBox, CheckBox)) in register_button()
69 D(CheckBox, CheckBox)) in register_button()
70 .def("caption", &CheckBox::caption, D(CheckBox, caption)) in register_button()
71 .def("setCaption", &CheckBox::setCaption, D(CheckBox, setCaption)) in register_button()
72 .def("checked", &CheckBox::checked, D(CheckBox, checked)) in register_button()
73 .def("setChecked", &CheckBox::setChecked, D(CheckBox, setChecked)) in register_button()
74 .def("pushed", &CheckBox::pushed, D(CheckBox, pushed)) in register_button()
75 .def("setPushed", &CheckBox::setPushed, D(CheckBox, setPushed)) in register_button()
[all …]
/dports/x11-toolkits/nanogui/nanogui-e9ec8a1a9861cf578d9c6e85a6420080aa715c03/python/
H A Dbutton.cpp8 DECLARE_WIDGET(CheckBox);
64 py::class_<CheckBox, Widget, ref<CheckBox>, PyCheckBox>(m, "CheckBox", D(CheckBox)) in register_button()
67 D(CheckBox, CheckBox)) in register_button()
70 D(CheckBox, CheckBox)) in register_button()
71 .def("caption", &CheckBox::caption, D(CheckBox, caption)) in register_button()
72 .def("setCaption", &CheckBox::setCaption, D(CheckBox, setCaption)) in register_button()
73 .def("checked", &CheckBox::checked, D(CheckBox, checked)) in register_button()
74 .def("setChecked", &CheckBox::setChecked, D(CheckBox, setChecked)) in register_button()
75 .def("pushed", &CheckBox::pushed, D(CheckBox, pushed)) in register_button()
76 .def("setPushed", &CheckBox::setPushed, D(CheckBox, setPushed)) in register_button()
[all …]
/dports/games/xonotic/Xonotic/source/qcsrc/menu/item/
H A Dcheckbox.qh4 CLASS(CheckBox, Button)
6 METHOD(CheckBox, draw, void(entity));
7 METHOD(CheckBox, playClickSound, void(entity));
8 METHOD(CheckBox, toString, string(entity));
9 METHOD(CheckBox, setChecked, void(entity, float));
10 ATTRIB(CheckBox, useDownAsChecked, float, 0);
11 ATTRIB(CheckBox, checked, float, 0);
13 ATTRIB(CheckBox, onClick, void(entity, entity), CheckBox_Click);
14 ATTRIB(CheckBox, srcMulti, float, 0);
15 ATTRIB(CheckBox, disabled, float, 0);
[all …]
/dports/graphics/art/ART-1.9.3/rtgui/
H A Dcheckbox.cc26 CheckBox::CheckBox (Glib::ustring label) in CheckBox() function in CheckBox
34 void CheckBox::buttonToggled () in buttonToggled()
47 void CheckBox::setLastActive() in setLastActive()
53 bool CheckBox::getLastActive () in getLastActive()
58 void CheckBox::setValue (CheckValue newValue) in setValue()
81 void CheckBox::setValue (bool active) in setValue()
90 CheckValue CheckBox::getValue () in getValue()
95 Glib::ustring CheckBox::getValueAsStr () in getValueAsStr()
123 void CheckBox::setEdited (bool edited) in setEdited()
133 bool CheckBox::getEdited () in getEdited()
[all …]
/dports/games/spacejunk/spacejunk-1.0.5/guichan/widgets/
H A Dcheckbox.cpp58 CheckBox::CheckBox() in CheckBox() function in gcn::CheckBox
67 CheckBox::CheckBox(const std::string &caption, bool selected) in CheckBox() function in gcn::CheckBox
79 void CheckBox::draw(Graphics* graphics) in draw()
91 void CheckBox::drawBox(Graphics *graphics) in drawBox()
130 bool CheckBox::isSelected() const in isSelected()
135 void CheckBox::setSelected(bool selected) in setSelected()
140 const std::string &CheckBox::getCaption() const in getCaption()
150 void CheckBox::keyPressed(KeyEvent& keyEvent) in keyPressed()
162 void CheckBox::mouseClicked(MouseEvent& mouseEvent) in mouseClicked()
175 void CheckBox::adjustSize() in adjustSize()
[all …]
/dports/devel/guichan/guichan-0.8.2/src/widgets/
H A Dcheckbox.cpp58 CheckBox::CheckBox() in CheckBox() function in gcn::CheckBox
67 CheckBox::CheckBox(const std::string &caption, bool selected) in CheckBox() function in gcn::CheckBox
79 void CheckBox::draw(Graphics* graphics) in draw()
91 void CheckBox::drawBox(Graphics *graphics) in drawBox()
130 bool CheckBox::isSelected() const in isSelected()
135 void CheckBox::setSelected(bool selected) in setSelected()
140 const std::string &CheckBox::getCaption() const in getCaption()
150 void CheckBox::keyPressed(KeyEvent& keyEvent) in keyPressed()
162 void CheckBox::mouseClicked(MouseEvent& mouseEvent) in mouseClicked()
175 void CheckBox::adjustSize() in adjustSize()
[all …]
/dports/graphics/rawtherapee/rawtherapee-5.8/rtgui/
H A Dcheckbox.cc26 CheckBox::CheckBox (Glib::ustring label, bool const& multiImageVal) in CheckBox() function in CheckBox
35 void CheckBox::buttonToggled () in buttonToggled()
60 void CheckBox::setLastActive() in setLastActive()
66 bool CheckBox::getLastActive () in getLastActive()
71 void CheckBox::setValue (CheckValue newValue) in setValue()
94 void CheckBox::setValue (bool active) in setValue()
103 CheckValue CheckBox::getValue () in getValue()
108 Glib::ustring CheckBox::getValueAsStr () in getValueAsStr()
136 void CheckBox::setEdited (bool edited) in setEdited()
146 bool CheckBox::getEdited () in getEdited()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/aspnetwebstack/test/System.Web.WebPages.Test/Html/
H A DCheckBoxTest.cs20 Assert.ThrowsArgumentNullOrEmptyString(() => helper.CheckBox(null), "name"); in CheckboxWithEmptyNameThrows()
31 var html = helper.CheckBox("foo"); in CheckboxWithDefaultArguments()
45 var html = helper.CheckBox("foo", new { attr = "attr-value" }); in CheckboxWithObjectAttributes()
73 var html = helper.CheckBox("foo", true); in CheckboxWithExplicitChecked()
89 var html = helper.CheckBox("foo"); in CheckboxWithModelValue()
105 var html = helper.CheckBox("foo"); in CheckboxWithNonBooleanModelValue()
115 Assert.Throws<InvalidOperationException>(() => helper.CheckBox("foo"), in CheckboxWithNonBooleanModelValue()
129 var html = helper.CheckBox("foo", true); in CheckboxWithModelAndExplictValue()
138 html = helper.CheckBox("foo", false); in CheckboxWithModelAndExplictValue()
152 var html = helper.CheckBox("foo", new { @checked = "checked" }); in CheckBoxWithCheckedHtmlAttribute()
[all …]
/dports/x11-themes/kf5-qqc2-desktop-style/qqc2-desktop-style-5.89.0/tests/
H A DCheckBox.qml12 CheckBox {
14 CheckBox {
19 CheckBox {
23 CheckBox {
27 CheckBox {
32 CheckBox {
37 CheckBox {
42 CheckBox {
48 CheckBox {
53 CheckBox {
[all …]
/dports/devel/flex-sdk/flex-sdk-4.6.0.23201/frameworks/projects/spark/src/spark/accessibility/
H A DCheckBoxAccImpl.as19 import spark.components.CheckBox;
26 * for spark.components.CheckBox.
28 * <p>When a Spark CheckBox is created,
40 * <p>A CheckBox has no MSAA children.</p>
70 * and the CheckBox has focus)</li>
79 * <p>A CheckBox does not have an MSAA Value.</p>
92 * to simulate pressing the CheckBox via the keyboard,
93 * if the CheckBox is enabled.</p>
97 * <p>A CheckBox accepts focus.
120 * Enables accessibility in the CheckBox class.
[all …]
/dports/multimedia/musikcube/musikcube-0.96.7/src/musikwin/win32cpp/
H A DCheckBox.cpp54 /*ctor*/ CheckBox::CheckBox(const uichar* caption, LayoutFlags layoutFlags, int style) in CheckBox() function in CheckBox
61 HWND CheckBox::Create(Window* parent) in Create()
85 LRESULT CheckBox::WindowProc(UINT message, WPARAM wParam, LPARAM lParam) in WindowProc()
103 void CheckBox::OnPressed(int state) in OnPressed()
108 void CheckBox::PaintToHDC(HDC hdc, const Rect& rect) in PaintToHDC()
120 bool CheckBox::IsChecked(void) const in IsChecked()
125 bool CheckBox::IsUnchecked(void) const in IsUnchecked()
130 bool CheckBox::IsIndeterminate(void) const in IsIndeterminate()
135 void CheckBox::Check(void) in Check()
141 void CheckBox::Uncheck(void) in Uncheck()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/UI/
H A DCheckBox.cpp37 CheckBox::CheckBox(Context* context) : in CheckBox() function in Urho3D::CheckBox
46 CheckBox::~CheckBox() in ~CheckBox()
50 void CheckBox::RegisterObject(Context* context) in RegisterObject()
52 context->RegisterFactory<CheckBox>(UI_CATEGORY); in RegisterObject()
61 void CheckBox::GetBatches(PODVector<UIBatch>& batches, PODVector<float>& vertexData, const IntRect&… in GetBatches()
72 void CheckBox::OnClickBegin(const IntVector2& position, const IntVector2& screenPosition, int butto… in OnClickBegin()
79 void CheckBox::OnKey(int key, int buttons, int qualifiers) in OnKey()
88 void CheckBox::SetChecked(bool enable) in SetChecked()
103 void CheckBox::SetCheckedOffset(const IntVector2& offset) in SetCheckedOffset()
108 void CheckBox::SetCheckedOffset(int x, int y) in SetCheckedOffset()
/dports/x11-toolkits/qwt6/qwt-6.1.6/examples/refreshtest/
H A Dpanel.h9 class CheckBox; variable
37 CheckBox *d_paintCache;
38 CheckBox *d_paintOnScreen;
39 CheckBox *d_immediatePaint;
41 CheckBox *d_openGL;
45 CheckBox *d_curveAntialiasing;
46 CheckBox *d_curveClipping;
47 CheckBox *d_curveFiltering;
48 CheckBox *d_lineSplitting;
51 CheckBox *d_curveFilled;
/dports/games/qonk/qonk-0.3.1/guichan/guichan/widgets/
H A Dcheckbox.cpp71 CheckBox::CheckBox() in CheckBox() function in gcn::CheckBox
80 CheckBox::CheckBox(const std::string &caption, bool marked) in CheckBox() function in gcn::CheckBox
92 void CheckBox::draw(Graphics* graphics) in draw()
109 void CheckBox::drawBorder(Graphics* graphics) in drawBorder()
133 void CheckBox::drawBox(Graphics *graphics) in drawBox()
168 bool CheckBox::isMarked() const in isMarked()
173 void CheckBox::setMarked(bool marked) in setMarked()
178 const std::string &CheckBox::getCaption() const in getCaption()
188 void CheckBox::keyPressed(KeyEvent& keyEvent) in keyPressed()
213 void CheckBox::adjustSize() in adjustSize()
[all …]
/dports/security/yapet/yapet-2.3/libyacurs/include/
H A Dcheckbox.h60 class CheckBox : public Widget {
83 CheckBox(const std::string& title, const std::vector<std::string>& items);
84 virtual ~CheckBox();
85 CheckBox(const CheckBox&) = delete;
86 CheckBox(CheckBox&&) = delete;
87 CheckBox& operator=(const CheckBox&) = delete;
88 CheckBox& operator=(CheckBox&&) = delete;
/dports/games/stratagus/stratagus-3.2.0/src/guichan/widgets/
H A Dcheckbox.cpp64 CheckBox::CheckBox() in CheckBox() function in gcn::CheckBox
73 CheckBox::CheckBox(const std::string &caption, bool marked) in CheckBox() function in gcn::CheckBox
85 void CheckBox::draw(Graphics* graphics) in draw()
102 void CheckBox::drawBorder(Graphics* graphics) in drawBorder()
126 void CheckBox::drawBox(Graphics *graphics) in drawBox()
161 bool CheckBox::isMarked() const in isMarked()
166 void CheckBox::setMarked(bool marked) in setMarked()
171 const std::string &CheckBox::getCaption() const in getCaption()
182 bool CheckBox::keyPress(const Key& key) in keyPress()
201 void CheckBox::adjustSize() in adjustSize()
[all …]
/dports/games/wyrmgus/Wyrmgus-3.5.4/src/guichan/widgets/
H A Dcheckbox.cpp64 CheckBox::CheckBox() in CheckBox() function in gcn::CheckBox
73 CheckBox::CheckBox(const std::string &caption, bool marked) in CheckBox() function in gcn::CheckBox
85 void CheckBox::draw(Graphics* graphics) in draw()
102 void CheckBox::drawBorder(Graphics* graphics) in drawBorder()
126 void CheckBox::drawBox(Graphics *graphics) in drawBox()
161 bool CheckBox::isMarked() const in isMarked()
166 void CheckBox::setMarked(bool marked) in setMarked()
171 const std::string &CheckBox::getCaption() const in getCaption()
182 bool CheckBox::keyPress(const Key& key) in keyPress()
201 void CheckBox::adjustSize() in adjustSize()
[all …]

12345678910>>...119