2007-09-27 20:57:58 +00:00
|
|
|
/*
|
2021-10-18 20:22:31 +00:00
|
|
|
* This file Copyright (C) 2007-2021 Mnemosyne LLC
|
2007-02-19 22:09:05 +00:00
|
|
|
*
|
2014-01-21 03:10:30 +00:00
|
|
|
* It may be used under the GNU GPL versions 2 or 3
|
2014-01-19 01:09:44 +00:00
|
|
|
* or any future license endorsed by Mnemosyne LLC.
|
2008-09-23 19:11:04 +00:00
|
|
|
*
|
2007-09-27 20:57:58 +00:00
|
|
|
*/
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2016-03-29 16:37:21 +00:00
|
|
|
#pragma once
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <memory>
|
2007-02-19 22:09:05 +00:00
|
|
|
|
2021-10-18 20:22:31 +00:00
|
|
|
#include <gtkmm.h>
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
class Session;
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
class PrefsDialog : public Gtk::Dialog
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
~PrefsDialog() override;
|
|
|
|
|
2021-11-01 00:11:23 +00:00
|
|
|
static std::unique_ptr<PrefsDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
protected:
|
2021-11-01 00:11:23 +00:00
|
|
|
PrefsDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
|
2021-10-18 20:22:31 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
class Impl;
|
|
|
|
std::unique_ptr<Impl> const impl_;
|
|
|
|
};
|
2007-09-27 20:57:58 +00:00
|
|
|
|
2010-02-01 04:54:10 +00:00
|
|
|
enum
|
|
|
|
{
|
2010-02-02 08:10:28 +00:00
|
|
|
MAIN_WINDOW_REFRESH_INTERVAL_SECONDS = 2,
|
2010-02-01 04:54:10 +00:00
|
|
|
SECONDARY_WINDOW_REFRESH_INTERVAL_SECONDS = 2
|
|
|
|
};
|