Fix tray visibility and message reception issues
- Disable sound initialization to prevent hanging
- Add missing import re in utils.py
- Fix settings loading for QSettings
- Update file paths to use PROJECT_ROOT
- Revert to working API paths and listener from commit efdc63e
This commit is contained in:
@@ -0,0 +1,123 @@
|
||||
// qinputdialog.sip generated by MetaSIP
|
||||
//
|
||||
// This file is part of the QtWidgets Python extension module.
|
||||
//
|
||||
// Copyright (c) 2025 Riverbank Computing Limited <info@riverbankcomputing.com>
|
||||
//
|
||||
// This file is part of PyQt6.
|
||||
//
|
||||
// This file may be used under the terms of the GNU General Public License
|
||||
// version 3.0 as published by the Free Software Foundation and appearing in
|
||||
// the file LICENSE included in the packaging of this file. Please review the
|
||||
// following information to ensure the GNU General Public License version 3.0
|
||||
// requirements will be met: http://www.gnu.org/copyleft/gpl.html.
|
||||
//
|
||||
// If you do not wish to use this file under the terms of the GPL version 3.0
|
||||
// then you may purchase a commercial license. For more information contact
|
||||
// info@riverbankcomputing.com.
|
||||
//
|
||||
// This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
|
||||
// WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
|
||||
class QInputDialog : public QDialog
|
||||
{
|
||||
%TypeHeaderCode
|
||||
#include <qinputdialog.h>
|
||||
%End
|
||||
|
||||
public:
|
||||
enum InputDialogOption /BaseType=Flag/
|
||||
{
|
||||
NoButtons,
|
||||
UseListViewForComboBoxItems,
|
||||
UsePlainTextEditForTextInput,
|
||||
};
|
||||
|
||||
typedef QFlags<QInputDialog::InputDialogOption> InputDialogOptions;
|
||||
|
||||
enum InputMode
|
||||
{
|
||||
TextInput,
|
||||
IntInput,
|
||||
DoubleInput,
|
||||
};
|
||||
|
||||
static QString getText(QWidget *parent, const QString &title, const QString &label, QLineEdit::EchoMode echo = QLineEdit::Normal, const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
|
||||
static int getInt(QWidget *parent, const QString &title, const QString &label, int value = 0, int min = -2147483647, int max = 2147483647, int step = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags()) /ReleaseGIL/;
|
||||
static double getDouble(QWidget *parent, const QString &title, const QString &label, double value = 0, double min = -2147483647, double max = 2147483647, int decimals = 1, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), double step = 1);
|
||||
static QString getItem(QWidget *parent, const QString &title, const QString &label, const QStringList &items, int current = 0, bool editable = true, bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
|
||||
static QString getMultiLineText(QWidget *parent, const QString &title, const QString &label, const QString &text = QString(), bool *ok = 0, Qt::WindowFlags flags = Qt::WindowFlags(), Qt::InputMethodHints inputMethodHints = Qt::ImhNone) /ReleaseGIL/;
|
||||
QInputDialog(QWidget *parent /TransferThis/ = 0, Qt::WindowFlags flags = Qt::WindowFlags());
|
||||
virtual ~QInputDialog();
|
||||
void setInputMode(QInputDialog::InputMode mode);
|
||||
QInputDialog::InputMode inputMode() const;
|
||||
void setLabelText(const QString &text);
|
||||
QString labelText() const;
|
||||
void setOption(QInputDialog::InputDialogOption option, bool on = true);
|
||||
bool testOption(QInputDialog::InputDialogOption option) const;
|
||||
void setOptions(QInputDialog::InputDialogOptions options);
|
||||
QInputDialog::InputDialogOptions options() const;
|
||||
void setTextValue(const QString &text);
|
||||
QString textValue() const;
|
||||
void setTextEchoMode(QLineEdit::EchoMode mode);
|
||||
QLineEdit::EchoMode textEchoMode() const;
|
||||
void setComboBoxEditable(bool editable);
|
||||
bool isComboBoxEditable() const;
|
||||
void setComboBoxItems(const QStringList &items);
|
||||
QStringList comboBoxItems() const;
|
||||
void setIntValue(int value);
|
||||
int intValue() const;
|
||||
void setIntMinimum(int min);
|
||||
int intMinimum() const;
|
||||
void setIntMaximum(int max);
|
||||
int intMaximum() const;
|
||||
void setIntRange(int min, int max);
|
||||
void setIntStep(int step);
|
||||
int intStep() const;
|
||||
void setDoubleValue(double value);
|
||||
double doubleValue() const;
|
||||
void setDoubleMinimum(double min);
|
||||
double doubleMinimum() const;
|
||||
void setDoubleMaximum(double max);
|
||||
double doubleMaximum() const;
|
||||
void setDoubleRange(double min, double max);
|
||||
void setDoubleDecimals(int decimals);
|
||||
int doubleDecimals() const;
|
||||
void setOkButtonText(const QString &text);
|
||||
QString okButtonText() const;
|
||||
void setCancelButtonText(const QString &text);
|
||||
QString cancelButtonText() const;
|
||||
virtual void open();
|
||||
void open(SIP_PYOBJECT slot /TypeHint="PYQT_SLOT"/);
|
||||
%MethodCode
|
||||
QObject *receiver;
|
||||
QByteArray slot_signature;
|
||||
|
||||
if ((sipError = pyqt6_qtwidgets_get_connection_parts(a0, sipCpp, "()", false, &receiver, slot_signature)) == sipErrorNone)
|
||||
{
|
||||
sipCpp->open(receiver, slot_signature.constData());
|
||||
}
|
||||
else if (sipError == sipErrorContinue)
|
||||
{
|
||||
sipError = sipBadCallableArg(0, a0);
|
||||
}
|
||||
%End
|
||||
|
||||
virtual QSize minimumSizeHint() const;
|
||||
virtual QSize sizeHint() const;
|
||||
virtual void setVisible(bool visible);
|
||||
virtual void done(int result);
|
||||
|
||||
signals:
|
||||
void textValueChanged(const QString &text);
|
||||
void textValueSelected(const QString &text);
|
||||
void intValueChanged(int value);
|
||||
void intValueSelected(int value);
|
||||
void doubleValueChanged(double value);
|
||||
void doubleValueSelected(double value);
|
||||
|
||||
public:
|
||||
void setDoubleStep(double step);
|
||||
double doubleStep() const;
|
||||
};
|
||||
Reference in New Issue
Block a user