⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 pmplistbox.h

📁 基于paragui实现的一个在linux操作系统下使用framebuffer来进行窗口模式的文件选择的源代码。
💻 H
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -