mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-17 12:20:00 +01:00
updated
This commit is contained in:
@@ -848,7 +848,7 @@ void AC_MainWindow::comboFilterChanged(int) {
|
|||||||
if(blend_set == false && text.find("Image") != std::string::npos)
|
if(blend_set == false && text.find("Image") != std::string::npos)
|
||||||
Log(tr("Set an Image to use this filter\n"));
|
Log(tr("Set an Image to use this filter\n"));
|
||||||
|
|
||||||
if(filter_single->isChecked() && text.find("SubFilter") != std::string::npos)
|
if(playback->getProgramMode() && text.find("SubFilter") != std::string::npos)
|
||||||
Log(tr("Set a SubFilter to use this filter\n"));
|
Log(tr("Set a SubFilter to use this filter\n"));
|
||||||
|
|
||||||
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
|
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
|
||||||
|
|||||||
@@ -132,6 +132,13 @@ void Playback::setAlpha(int a) {
|
|||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Playback::getProgramMode() {
|
||||||
|
mutex.lock();
|
||||||
|
bool m = single_mode;
|
||||||
|
mutex.unlock();
|
||||||
|
return m;
|
||||||
|
}
|
||||||
|
|
||||||
void Playback::setProcMode(int p) {
|
void Playback::setProcMode(int p) {
|
||||||
mutex.lock();
|
mutex.lock();
|
||||||
ac::setProcMode(ac::PROC_MODE_TYPE(p));
|
ac::setProcMode(ac::PROC_MODE_TYPE(p));
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ public:
|
|||||||
void setFadeFilter(bool f);
|
void setFadeFilter(bool f);
|
||||||
void setFrameIndex(const long &index);
|
void setFrameIndex(const long &index);
|
||||||
bool getFrame(QImage &img, const int &index);
|
bool getFrame(QImage &img, const int &index);
|
||||||
|
bool getProgramMode();
|
||||||
void setRGB(int r, int g, int b);
|
void setRGB(int r, int g, int b);
|
||||||
void setColorOptions(int b, int g, int s);
|
void setColorOptions(int b, int g, int s);
|
||||||
void setAlpha(int a);
|
void setAlpha(int a);
|
||||||
|
|||||||
Reference in New Issue
Block a user