forked from aseprite/aseprite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathint_entry.h
48 lines (36 loc) · 889 Bytes
/
int_entry.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
// Aseprite UI Library
// Copyright (C) 2001-2013 David Capello
//
// This file is released under the terms of the MIT license.
// Read LICENSE.txt for more information.
#ifndef UI_INT_ENTRY_H_INCLUDED
#define UI_INT_ENTRY_H_INCLUDED
#pragma once
#include "ui/entry.h"
namespace ui {
class CloseEvent;
class PopupWindow;
class Slider;
class IntEntry : public Entry {
public:
IntEntry(int min, int max);
~IntEntry();
int getValue() const;
void setValue(int value);
protected:
bool onProcessMessage(Message* msg) override;
void onEntryChange() override;
// New events
virtual void onValueChange();
private:
void openPopup();
void closePopup();
void onChangeSlider();
void onPopupClose(CloseEvent& ev);
int m_min;
int m_max;
PopupWindow* m_popupWindow;
Slider* m_slider;
};
} // namespace ui
#endif