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 73 74 75 76 77 78 79 80 81 82
|
/*
* this is a scrolling area in which subcomponents are drawn
*
* Copyright (c) 1997 - 2001 Hansjrg Malthaner
*
* This file is part of the Simutrans project under the artistic licence.
* (see licence.txt)
*/
#ifndef gui_scrollpane_h
#define gui_scrollpane_h
#include "../../ifc/gui_komponente.h"
#include "gui_scrollbar.h"
class gui_scrollpane_t : public gui_komponente_t
{
private:
/**
* Die zu scrollende Komponente
* @author Hj. Malthaner
*/
gui_komponente_t *komp;
koord old_komp_groesse;
/**
* Scrollbar X/Y
* @author Hj. Malthaner
*/
scrollbar_t scroll_x, scroll_y;
bool b_show_scroll_x:1;
bool b_show_scroll_y:1;
bool b_has_size_corner:1;
void recalc_sliders(koord groesse);
public:
/**
* @param komp Die zu scrollende Komponente
* @author Hj. Malthaner
*/
gui_scrollpane_t(gui_komponente_t *komp);
/**
* Bei Scrollpanes _muss_ diese Methode zum setzen der Groesse
* benutzt werden.
* @author Hj. Malthaner
*/
void setze_groesse(koord groesse);
/**
* Setzt Positionen der Scrollbars
* @author Hj. Malthaner
*/
void setze_scroll_position(int x, int y);
int get_scroll_x() const;
int get_scroll_y() const;
/**
* Events werden hiermit an die GUI-Komponenten
* gemeldet
* @author Hj. Malthaner
*/
void infowin_event(const event_t *ev);
/**
* Zeichnet die Komponente
* @author Hj. Malthaner
*/
void zeichnen(koord offset);
void set_show_scroll_x(bool yesno) { b_show_scroll_x = yesno; }
void set_show_scroll_y(bool yesno) { b_show_scroll_y = yesno; }
void set_size_corner(bool yesno) { b_has_size_corner = yesno; }
};
#endif
|