mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-17 04:10:01 +01:00
search box
This commit is contained in:
@@ -68,7 +68,8 @@ AC_MainWindow::AC_MainWindow(QWidget *parent) : QMainWindow(parent) {
|
||||
|
||||
search_box = new SearchWindow(this);
|
||||
search_box->setParent(this);
|
||||
|
||||
search_box->setFiltersControl(filters, custom_filters);
|
||||
search_box->main_window = this;
|
||||
statusBar()->showMessage(tr("Acid Cam v2 Loaded - Use File Menu to Start"));
|
||||
take_snapshot = false;
|
||||
disp = new DisplayWindow(this);
|
||||
@@ -403,6 +404,12 @@ void AC_MainWindow::addClicked() {
|
||||
}
|
||||
}
|
||||
|
||||
void AC_MainWindow::updateList() {
|
||||
std::vector<std::pair<int, int>> v;
|
||||
buildVector(v);
|
||||
playback->setVector(v);
|
||||
}
|
||||
|
||||
void AC_MainWindow::rmvClicked() {
|
||||
int item = custom_filters->currentRow();
|
||||
if(item != -1) {
|
||||
|
||||
Reference in New Issue
Block a user