blob: 0b7709edd5cb6360889be459c4f220fd8df8871d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2022, Utkarsh Tiwari <utkarsh02t@gmail.com>
*
* cam_select_dialog.h - qcam - Camera Selection dialog
*/
#pragma once
#include <string>
#include <libcamera/camera.h>
#include <libcamera/camera_manager.h>
#include <libcamera/controls.h>
#include <libcamera/property_ids.h>
#include <QDialog>
#include <QString>
class QComboBox;
class QLabel;
class CameraSelectorDialog : public QDialog
{
Q_OBJECT
public:
CameraSelectorDialog(libcamera::CameraManager *cameraManager,
QWidget *parent);
~CameraSelectorDialog();
std::string getCameraId();
/* Hotplug / Unplug Support. */
void addCamera(QString cameraId);
void removeCamera(QString cameraId);
/* Camera Information */
void updateCameraInfo(QString cameraId);
private:
libcamera::CameraManager *cm_;
/* UI elements. */
QComboBox *cameraIdComboBox_;
QLabel *cameraLocation_;
QLabel *cameraModel_;
};
|