transmission/gtk/PrefsDialog.h

37 lines
681 B
C
Raw Normal View History

/*
* This file Copyright (C) 2007-2021 Mnemosyne LLC
2007-02-19 22:09:05 +00:00
*
* It may be used under the GNU GPL versions 2 or 3
* or any future license endorsed by Mnemosyne LLC.
*
*/
2007-02-19 22:09:05 +00:00
#pragma once
2007-02-19 22:09:05 +00:00
#include <memory>
2007-02-19 22:09:05 +00:00
#include <gtkmm.h>
class Session;
class PrefsDialog : public Gtk::Dialog
{
public:
~PrefsDialog() override;
static std::unique_ptr<PrefsDialog> create(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
protected:
PrefsDialog(Gtk::Window& parent, Glib::RefPtr<Session> const& core);
private:
class Impl;
std::unique_ptr<Impl> const impl_;
};
enum
{
2010-02-02 08:10:28 +00:00
MAIN_WINDOW_REFRESH_INTERVAL_SECONDS = 2,
SECONDARY_WINDOW_REFRESH_INTERVAL_SECONDS = 2
};