mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-07-25 07:14:55 +02:00
first round of review changes
This commit is contained in:
parent
761ca1c2f5
commit
0797e154a1
4 changed files with 0 additions and 111 deletions
|
@ -1,76 +0,0 @@
|
||||||
// login
|
|
||||||
|
|
||||||
import QtQuick 2.3
|
|
||||||
import QtQuick 2.1
|
|
||||||
import "HFControls"
|
|
||||||
|
|
||||||
Item {
|
|
||||||
id: root
|
|
||||||
anchors.fill: parent
|
|
||||||
Text {
|
|
||||||
id: title
|
|
||||||
width: 325
|
|
||||||
height: 26
|
|
||||||
font.family: "Graphik"
|
|
||||||
font.pixelSize: 28
|
|
||||||
color: "#FFFFFF"
|
|
||||||
text: "Choose a display name"
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
verticalAlignment: Text.AlignVCenter
|
|
||||||
anchors {
|
|
||||||
top: root.top
|
|
||||||
topMargin: 29
|
|
||||||
horizontalCenter: root.horizontalCenter
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Text {
|
|
||||||
id: instruction
|
|
||||||
width: 425
|
|
||||||
height: 22
|
|
||||||
font.family: "Graphik"
|
|
||||||
font.pixelSize: 14
|
|
||||||
horizontalAlignment: Text.AlignHCenter
|
|
||||||
verticalAlignment: Text.AlignVCenter
|
|
||||||
color: "#C4C4C4"
|
|
||||||
text: "This is the name that your teammates will see."
|
|
||||||
anchors {
|
|
||||||
left: root.left
|
|
||||||
right: root.right
|
|
||||||
top: title.bottom
|
|
||||||
topMargin: 18
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
HFTextField {
|
|
||||||
id: password
|
|
||||||
width: 306
|
|
||||||
height: 40
|
|
||||||
font.family: "Graphik"
|
|
||||||
font.pixelSize: 18
|
|
||||||
placeholderText: "Display Name"
|
|
||||||
color: "#808080"
|
|
||||||
seperatorColor: Qt.rgba(1, 1, 1, 0.3)
|
|
||||||
anchors {
|
|
||||||
top: instruction.bottom
|
|
||||||
horizontalCenter: instruction.horizontalCenter
|
|
||||||
topMargin: 79
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
HFButton {
|
|
||||||
id: button
|
|
||||||
width: 122
|
|
||||||
height: 36
|
|
||||||
|
|
||||||
font.family: "Graphik"
|
|
||||||
font.pixelSize: 18
|
|
||||||
text: "NEXT"
|
|
||||||
|
|
||||||
anchors {
|
|
||||||
top: password.bottom
|
|
||||||
horizontalCenter: instruction.horizontalCenter
|
|
||||||
topMargin: 59
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -13,7 +13,6 @@
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QStandardPaths>
|
#include <QStandardPaths>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
//#incluce <QTextStream>
|
|
||||||
|
|
||||||
|
|
||||||
QString getMetaverseAPIDomain() {
|
QString getMetaverseAPIDomain() {
|
||||||
|
@ -104,32 +103,3 @@ const QString& getInterfaceSharedMemoryName() {
|
||||||
static const QString applicationName = "High Fidelity Interface - " + qgetenv("USERNAME");
|
static const QString applicationName = "High Fidelity Interface - " + qgetenv("USERNAME");
|
||||||
return applicationName;
|
return applicationName;
|
||||||
}
|
}
|
||||||
|
|
||||||
//#ifdef Q_OS_WIN
|
|
||||||
//#include <Windows.h>
|
|
||||||
//#include <tlhelp32.h>
|
|
||||||
//#include <wincrypt.h>
|
|
||||||
//#include <tlhelp32.h>
|
|
||||||
//#include <strsafe.h>
|
|
||||||
//#include <winhttp.h>
|
|
||||||
//
|
|
||||||
//bool isProcessRunning(const wchar_t *processName, int& processID) {
|
|
||||||
// bool exists = false;
|
|
||||||
// PROCESSENTRY32 entry;
|
|
||||||
// entry.dwSize = sizeof(PROCESSENTRY32);
|
|
||||||
//
|
|
||||||
// HANDLE snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL);
|
|
||||||
//
|
|
||||||
// if (Process32First(snapshot, &entry)) {
|
|
||||||
// while (Process32Next(snapshot, &entry)) {
|
|
||||||
// if (!_wcsicmp(entry.szExeFile, processName)) {
|
|
||||||
// exists = true;
|
|
||||||
// processID = entry.th32ProcessID;
|
|
||||||
// break;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
// CloseHandle(snapshot);
|
|
||||||
// return exists;
|
|
||||||
//}
|
|
||||||
//#endif
|
|
||||||
|
|
|
@ -37,7 +37,3 @@ BOOL shutdownProcess(DWORD dwProcessId, UINT uExitCode);
|
||||||
QString getHTTPUserAgent();
|
QString getHTTPUserAgent();
|
||||||
|
|
||||||
const QString& getInterfaceSharedMemoryName();
|
const QString& getInterfaceSharedMemoryName();
|
||||||
|
|
||||||
//#ifdef Q_OS_WIN
|
|
||||||
//bool isProcessRunning(const wchar_t *processName, int& processID) {
|
|
||||||
//#endif
|
|
||||||
|
|
|
@ -63,7 +63,6 @@ void LauncherState::gotoNextDebugScreen() {
|
||||||
#ifdef DEBUG_UI
|
#ifdef DEBUG_UI
|
||||||
if (_currentDebugScreen < (UIState::UI_STATE_NUM - 1)) {
|
if (_currentDebugScreen < (UIState::UI_STATE_NUM - 1)) {
|
||||||
_currentDebugScreen = (UIState)(_currentDebugScreen + 1);
|
_currentDebugScreen = (UIState)(_currentDebugScreen + 1);
|
||||||
//UIState updatedUIState = getUIState();
|
|
||||||
emit uiStateChanged();
|
emit uiStateChanged();
|
||||||
emit updateSourceUrl(PathUtils::resourcePath(getCurrentUISource()));
|
emit updateSourceUrl(PathUtils::resourcePath(getCurrentUISource()));
|
||||||
_uiState = getUIState();
|
_uiState = getUIState();
|
||||||
|
|
Loading…
Reference in a new issue