Some work about adaptive color scheme for Web UI (PR #19901)
http://[316:c51a:62a3:8b9::4]/d4708/qBittorrent/src/branch/adaptive-webui
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
869 B
27 lines
869 B
14 years ago
|
/*
|
||
|
-----BEGIN QCMOD-----
|
||
|
name: libboost
|
||
|
arg: with-qtsingleapplication=[system|shipped], Use the shipped qtsingleapplication library or the system one
|
||
|
-----END QCMOD-----
|
||
|
*/
|
||
|
class qc_qtsingleapplication : public ConfObj
|
||
|
{
|
||
|
public:
|
||
|
qc_qtsingleapplication(Conf *c) : ConfObj(c) {}
|
||
|
QString name() const { return "qtsingleapplication library"; }
|
||
|
QString shortname() const { return "qtsingleapplication"; }
|
||
|
|
||
|
bool exec(){
|
||
|
QString s;
|
||
|
s = conf->getenv("QC_WITH_QTSINGLEAPPLICATION");
|
||
|
if(s.compare("system", Qt::CaseInsensitive) == 0) {
|
||
|
// System
|
||
|
conf->addDefine("USE_SYSTEM_QTSINGLEAPPLICATION");
|
||
|
printf(" [system] ");
|
||
|
} else {
|
||
|
printf(" [shipped] ");
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
};
|