pmplistbox.h
来自「基于paragui实现的一个在linux操作系统下使用framebuffer来进」· C头文件 代码 · 共 27 行
H
27 行
#include <paragui/pglistbox.h>#include <paragui/pglistboxitem.h>using namespace std;class PmpListBox : public PG_ListBox { public: PmpListBox(PG_Widget* parent,const PG_Rect& r = PG_Rect::null,const char* style = "ListBox"); ~PmpListBox(); void Scroll(int y); }; PmpListBox :: PmpListBox(PG_Widget* parent,const PG_Rect& r, const char* style) : PG_ListBox(parent,r,style){}PmpListBox::~PmpListBox(){}void PmpListBox::Scroll(int y){ ScrollTo(y); my_objVerticalScrollbar->SetPosition(y);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?