GuiLite/widgets/src/spinbox.cpp

225 lines
5.7 KiB
C++
Raw Normal View History

#include "core_include/api.h"
#include "core_include/rect.h"
#include "core_include/cmd_target.h"
#include "core_include/wnd.h"
2018-10-04 14:30:29 +08:00
#include "core_include/resource.h"
#include "core_include/word.h"
#include "core_include/surface.h"
#include "core_include/theme.h"
#include "../widgets_include/button.h"
#include "../widgets_include/spinbox.h"
2017-12-06 21:43:47 +08:00
#define ARROW_BT_HEIGHT 55
#define ID_BT_ARROW_UP 1
#define ID_BT_ARROW_DOWN 2
2018-12-02 22:39:43 +08:00
GL_BEGIN_MESSAGE_MAP(c_spin_box)
ON_GL_BN_CLICKED(ID_BT_ARROW_UP, c_spin_box::on_arrow_up_bt_click)
ON_GL_BN_CLICKED(ID_BT_ARROW_DOWN, c_spin_box::on_arrow_down_bt_click)
GL_END_MESSAGE_MAP()
2017-12-06 21:43:47 +08:00
void c_spin_box::pre_create_wnd()
{
2018-12-02 22:39:43 +08:00
m_style = GL_ATTR_VISIBLE | GL_ATTR_FOCUS | ALIGN_HCENTER | ALIGN_VCENTER;
m_font_type = c_theme::get_font(FONT_DEFAULT);
m_font_color = c_theme::get_color(COLOR_WND_FONT);
2017-12-06 21:43:47 +08:00
m_max = 6;
m_min = 1;
m_digit = 0;
m_step = 1;
//set arrow button position.
c_rect rect;
get_screen_rect(rect);
2018-10-04 14:30:29 +08:00
m_bt_up_rect.m_left = rect.m_left;
m_bt_up_rect.m_right = rect.m_left + rect.Width() / 2 - 1;
m_bt_up_rect.m_top = rect.m_bottom + 1;
m_bt_up_rect.m_bottom = m_bt_up_rect.m_top + ARROW_BT_HEIGHT;
2017-12-06 21:43:47 +08:00
2018-10-04 14:30:29 +08:00
m_bt_down_rect.m_left = rect.m_left + rect.Width() / 2;
m_bt_down_rect.m_right = rect.m_right;
m_bt_down_rect.m_top = rect.m_bottom + 1;
m_bt_down_rect.m_bottom = m_bt_down_rect.m_top + ARROW_BT_HEIGHT;
2017-12-06 21:43:47 +08:00
}
bool c_spin_box::on_touch(int x, int y, TOUCH_ACTION action)
{
(action == TOUCH_DOWN) ? on_touch_down(x, y) : on_touch_up(x, y);
return true;
}
2017-12-06 21:43:47 +08:00
void c_spin_box::on_touch_down(int x, int y)
{
c_rect arrow_rect = m_wnd_rect;
2018-10-04 14:30:29 +08:00
arrow_rect.m_right = m_bt_down_rect.m_right;
arrow_rect.m_bottom = m_bt_down_rect.m_bottom;
2017-12-06 21:43:47 +08:00
if ( TRUE == m_wnd_rect.PtInRect(x, y) )
{//click spin box
if (STATUS_NORMAL == m_status)
{
m_parent->set_child_focus(this);
2017-12-06 21:43:47 +08:00
}
}
else if (TRUE == arrow_rect.PtInRect(x, y))
{//click arrow button
c_wnd::on_touch(x, y, TOUCH_DOWN);
2017-12-06 21:43:47 +08:00
}
else
{//click invalid place.
if (STATUS_PUSHED == m_status)
{
if (m_value != m_cur_value)
{
m_value = m_cur_value;
}
2018-12-28 15:56:36 +08:00
m_status = STATUS_FOCUSED;
2017-12-06 21:43:47 +08:00
on_paint();
2018-12-02 22:39:43 +08:00
notify_parent(GL_SPIN_CONFIRM, get_id(), 0);
2017-12-06 21:43:47 +08:00
}
}
}
void c_spin_box::on_touch_up(int x, int y)
{
if (STATUS_FOCUSED == m_status)
{
2018-12-28 15:56:36 +08:00
m_status = STATUS_PUSHED;
2017-12-06 21:43:47 +08:00
on_paint();
2018-12-02 22:39:43 +08:00
notify_parent(GL_SPIN_SELECT, get_id(), 0);
2017-12-06 21:43:47 +08:00
}
else if (STATUS_PUSHED == m_status)
{
if (m_wnd_rect.PtInRect(x, y))
{//click spin box.
if (m_value != m_cur_value)
{
m_value = m_cur_value;
}
2018-12-28 15:56:36 +08:00
m_status = STATUS_FOCUSED;
2017-12-06 21:43:47 +08:00
on_paint();
2018-12-02 22:39:43 +08:00
notify_parent(GL_SPIN_CONFIRM, get_id(), 0);
2017-12-06 21:43:47 +08:00
}
else
{//click arrow button.
c_wnd::on_touch(x, y, TOUCH_UP);
2017-12-06 21:43:47 +08:00
}
}
}
void c_spin_box::on_focus()
{
2018-12-28 15:56:36 +08:00
m_status = STATUS_FOCUSED;
2017-12-06 21:43:47 +08:00
on_paint();
}
void c_spin_box::on_kill_focus()
{
m_cur_value = m_value;
2018-12-28 15:56:36 +08:00
m_status = STATUS_NORMAL;
2017-12-06 21:43:47 +08:00
on_paint();
}
void c_spin_box::show_arrow_button()
{
m_surface->fill_rect(m_bt_up_rect.m_left, m_bt_up_rect.m_top, m_bt_down_rect.m_right, m_bt_down_rect.m_bottom, GL_RGB(99,108,124), m_z_order);
2018-10-04 14:30:29 +08:00
m_bt_up.connect(this, ID_BT_ARROW_UP, 0, 0, m_wnd_rect.Height(), m_bt_up_rect.Width(),m_bt_up_rect.Height());
m_bt_up.set_bitmap(c_theme::get_bmp(BITMAP_UP_ARROW1));
m_bt_up.set_focus_bitmap(c_theme::get_bmp(BITMAP_UP_ARROW2));
m_bt_up.set_pushed_bitmap(c_theme::get_bmp(BITMAP_UP_ARROW2));
2018-10-04 14:30:29 +08:00
m_bt_up.show_window();
m_bt_down.connect(this, ID_BT_ARROW_DOWN, 0, m_bt_up_rect.Width(), m_wnd_rect.Height(), m_bt_down_rect.Width(),m_bt_down_rect.Height());
m_bt_down.set_bitmap(c_theme::get_bmp(BITMAP_DOWN_ARROW1));
m_bt_down.set_focus_bitmap(c_theme::get_bmp(BITMAP_DOWN_ARROW2));
m_bt_down.set_pushed_bitmap(c_theme::get_bmp(BITMAP_DOWN_ARROW2));
2018-10-04 14:30:29 +08:00
m_bt_down.show_window();
2017-12-06 21:43:47 +08:00
}
void c_spin_box::hide_arrow_button()
{
2018-10-04 14:30:29 +08:00
m_bt_up.disconnect();
m_bt_down.disconnect();
2017-12-06 21:43:47 +08:00
}
void c_spin_box::on_paint()
{
c_rect rect,tmp_rect;
get_screen_rect(rect);
tmp_rect.m_left = rect.m_left;
tmp_rect.m_right = rect.m_right;
switch(m_status)
{
2018-10-04 14:30:29 +08:00
case STATUS_NORMAL:
2017-12-06 21:43:47 +08:00
if (m_z_order > m_parent->get_z_order())
{
hide_arrow_button();
tmp_rect.Empty();
m_surface->set_frame_layer(tmp_rect, m_z_order);
m_z_order = m_parent->get_z_order();
}
m_surface->fill_rect(rect, c_theme::get_color(COLOR_WND_NORMAL), m_z_order);
2017-12-06 21:43:47 +08:00
break;
2018-10-04 14:30:29 +08:00
case STATUS_FOCUSED:
2017-12-06 21:43:47 +08:00
if (m_z_order > m_parent->get_z_order())
{
hide_arrow_button();
tmp_rect.Empty();
m_surface->set_frame_layer(tmp_rect, m_z_order);
m_z_order = m_parent->get_z_order();
}
m_surface->fill_rect(rect, c_theme::get_color(COLOR_WND_FOCUS), m_z_order);
2018-10-04 14:30:29 +08:00
break;
case STATUS_PUSHED:
if (m_z_order == m_parent->get_z_order())
{
m_z_order++;
}
tmp_rect.m_top = m_bt_down_rect.m_top;
tmp_rect.m_bottom = m_bt_down_rect.m_bottom;
m_surface->set_frame_layer(tmp_rect, m_z_order);
show_arrow_button();
2017-12-06 21:43:47 +08:00
m_surface->fill_rect(rect.m_left, rect.m_top, rect.m_right, rect.m_bottom, c_theme::get_color(COLOR_WND_PUSHED), m_parent->get_z_order());
m_surface->draw_rect(rect.m_left, rect.m_top, rect.m_right, rect.m_bottom, c_theme::get_color(COLOR_WND_BORDER), m_parent->get_z_order(), 2);
2018-11-01 10:35:37 +08:00
c_word::draw_value_in_rect(m_surface, m_parent->get_z_order(), m_cur_value, m_digit, rect, m_font_type, GL_RGB(2, 124, 165), GL_ARGB(0, 0, 0, 0), m_style);
2018-10-04 14:30:29 +08:00
return;
2017-12-06 21:43:47 +08:00
break;
default:
ASSERT(FALSE);
break;
}
2018-11-01 10:35:37 +08:00
c_word::draw_value_in_rect(m_surface, m_parent->get_z_order(), m_cur_value, m_digit, rect, m_font_type, m_font_color, GL_ARGB(0, 0, 0, 0), m_style);
2017-12-06 21:43:47 +08:00
}
void c_spin_box::on_arrow_up_bt_click(unsigned int ctr_id)
{
m_cur_value += m_step;
if (m_cur_value > m_max)
{
m_cur_value = m_max;
}
else
{
on_paint();
}
}
void c_spin_box::on_arrow_down_bt_click(unsigned int ctr_id)
{
m_cur_value -= m_step;
if (m_cur_value < m_min)
{
m_cur_value = m_min;
}
else
{
on_paint();
}
}