view src/core/session.cc @ 347:a0aa8c8c4307

dep/anitomy: port to use UCS-4 rather than wide strings rationale: wide strings are not the same on every platform, and might not even be Unicode. (while they usually are, its possible that they are not) I was *going* to change StringToInt to use a string stream, but outputting to an integer doesn't seem to work at all with UCS-4, even though it ought to, so I just rolled my own that uses the arabic digits only.
author Paper <paper@paper.us.eu.org>
date Sun, 23 Jun 2024 10:32:09 -0400
parents d928ec7b6a0d
children
line wrap: on
line source

#include "core/session.h"
#include "core/strings.h"
#include "core/config.h"
#include "gui/window.h"
#include "gui/locale.h"

#include <QElapsedTimer>
#include <QStatusBar>

#include "semver/semver.hpp"

#include <atomic>

Session session;

Session::Session() : gen(Time::GetSystemTime()) {
	timer_.start();
}

void Session::SetMainWindow(MainWindow* window) {
	disconnect();
	window_ = window;
	connect(this, &Session::StatusBarChange, window_, &MainWindow::SetStatusMessage);
}

void Session::SetStatusBar(const std::string& message) {
	emit StatusBarChange(message);
}

void Session::IncrementRequests() {
	requests_++;
};

unsigned int Session::GetRequests() {
	return requests_;
};

int Session::uptime() {
	return timer_.elapsed();
}