qcam: Pass camera manager to MainWindow class
Pass the CameraManager instance from the main() function to the MainWindow class instead of accessing it through CameraManager::instance(). This prepares for the removal of the CameraManager::instance() method. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org>
This commit is contained in:
@@ -73,7 +73,7 @@ int main(int argc, char **argv)
|
||||
return EXIT_FAILURE;
|
||||
}
|
||||
|
||||
MainWindow *mainWindow = new MainWindow(options);
|
||||
MainWindow *mainWindow = new MainWindow(cm, options);
|
||||
mainWindow->show();
|
||||
ret = app.exec();
|
||||
delete mainWindow;
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
|
||||
using namespace libcamera;
|
||||
|
||||
MainWindow::MainWindow(const OptionsParser::Options &options)
|
||||
MainWindow::MainWindow(CameraManager *cm, const OptionsParser::Options &options)
|
||||
: options_(options), isCapturing_(false)
|
||||
{
|
||||
int ret;
|
||||
@@ -35,7 +35,7 @@ MainWindow::MainWindow(const OptionsParser::Options &options)
|
||||
viewfinder_->setFixedSize(500, 500);
|
||||
adjustSize();
|
||||
|
||||
ret = openCamera();
|
||||
ret = openCamera(cm);
|
||||
if (!ret)
|
||||
ret = startCapture();
|
||||
|
||||
@@ -66,9 +66,8 @@ void MainWindow::updateTitle()
|
||||
setWindowTitle(title_ + " : " + QString::number(fps, 'f', 2) + " fps");
|
||||
}
|
||||
|
||||
int MainWindow::openCamera()
|
||||
int MainWindow::openCamera(CameraManager *cm)
|
||||
{
|
||||
CameraManager *cm = CameraManager::instance();
|
||||
std::string cameraName;
|
||||
|
||||
if (!options_.isSet(OptCamera)) {
|
||||
|
||||
@@ -16,6 +16,7 @@
|
||||
#include <QTimer>
|
||||
|
||||
#include <libcamera/camera.h>
|
||||
#include <libcamera/camera_manager.h>
|
||||
#include <libcamera/stream.h>
|
||||
|
||||
#include "../cam/options.h"
|
||||
@@ -35,14 +36,14 @@ class MainWindow : public QMainWindow
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
MainWindow(const OptionsParser::Options &options);
|
||||
MainWindow(CameraManager *cm, const OptionsParser::Options &options);
|
||||
~MainWindow();
|
||||
|
||||
private Q_SLOTS:
|
||||
void updateTitle();
|
||||
|
||||
private:
|
||||
int openCamera();
|
||||
int openCamera(CameraManager *cm);
|
||||
|
||||
int startCapture();
|
||||
void stopCapture();
|
||||
|
||||
Reference in New Issue
Block a user