Beispiel #1
0
		void widget::move(int x, int y, unsigned width, unsigned height)
		{
			_m_move(x, y, width, height);
		}
Beispiel #2
0
		void widget::move(int x, int y)
		{
			_m_move(x, y);
		}
Beispiel #3
0
		void widget::move(const point& pos)
		{
			_m_move(pos.x, pos.y);
		}
Beispiel #4
0
		void widget::move(const rectangle& r)
		{
			_m_move(r);
		}
Beispiel #5
0
		void widget::move(const nana::rectangle& r)
		{
			_m_move(r.x, r.y, r.width, r.height);
		}