2018-11-09 19:13:15 -06:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#include "yuzu/applets/software_keyboard.h"
|
2018-11-11 15:39:25 -06:00
|
|
|
#include "yuzu/main.h"
|
2018-11-09 19:13:15 -06:00
|
|
|
|
2021-01-30 13:38:00 -06:00
|
|
|
QtSoftwareKeyboardValidator::QtSoftwareKeyboardValidator() {}
|
2018-11-09 19:13:15 -06:00
|
|
|
|
2021-01-30 13:38:00 -06:00
|
|
|
QValidator::State QtSoftwareKeyboardValidator::validate(QString& input, int& pos) const {}
|
2018-11-09 19:13:15 -06:00
|
|
|
|
2021-01-30 13:38:00 -06:00
|
|
|
QtSoftwareKeyboardDialog::QtSoftwareKeyboardDialog(QWidget* parent) : QDialog(parent) {}
|
2018-11-09 19:13:15 -06:00
|
|
|
|
2018-11-11 15:39:25 -06:00
|
|
|
QtSoftwareKeyboardDialog::~QtSoftwareKeyboardDialog() = default;
|
|
|
|
|
2021-01-30 13:38:00 -06:00
|
|
|
QtSoftwareKeyboard::QtSoftwareKeyboard(GMainWindow& main_window) {}
|
2018-11-11 15:39:25 -06:00
|
|
|
|
|
|
|
QtSoftwareKeyboard::~QtSoftwareKeyboard() = default;
|