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

📄 atmospheres.cpp

📁 QT KTV 源码,QT designer
💻 CPP
字号:
#include "../headers/Atmospheres.h"

Atmospheres::Atmospheres() : SongListTemplate() {
	InterfaceConfig config(GlobalData::ConfigPrefix + "Atmosphere.ini");
	this->AddButton(&config);
	this->SetupSignalConnection(config.GetNameList());
	this->_queryStr = "SELECT a.*,b.orderId,b.priority,b.finished FROM Song AS a,OrderList AS b WHERE a.songId=b.songId ORDER BY b.finished DESC,b.priority DESC,b.orderId ASC";
	this->DisplayData();
	MyButton* p_mb = this->FindButton("Toolsicon/Mood");
	if(p_mb) p_mb->Disabled();
}
void Atmospheres::ActionToDo(){
	//MyButton* p_mb = (MyButton*)this->sender();
	DisplayData();
}
void Atmospheres::ItemClick(){
	/* do nothing here */
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -