view gui/src/resource-manager.h @ 14804:a565c560e654 gui

Replaced a lot of terminal interaction with events: Clearing, loading and saving workspace, running a file. Default location for saving a new file is now the current working directory. Fixed bad settings with a fresh installation of the GUI by providing a file with default settings and installing it when appropriate. * default-settings: New file containing the default settings. * file-editor-tab: Subclassed event observer and added code to send a run event. * main-window: Sending workspace events instead of using the terminal. * octave-event: Added new event types. * octave-link: Added getter for the current working directory. * octave-gui: Adjusted code, so the default settings can be loaded. * resource-manager: Added code to handle the logic with a default settings file.
author Jacob Dawid <jacob.dawid@googlemail.com>
date Tue, 26 Jun 2012 15:27:10 +0200
parents 5cb54cca8a06
children d02b229ce693
line wrap: on
line source

/* OctaveGUI - A graphical user interface for Octave
 * Copyright (C) 2011 Jacob Dawid (jacob.dawid@googlemail.com)
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef RESOURCEMANAGER_H
#define RESOURCEMANAGER_H

#include <QSettings>
#include <QDesktopServices>
#include <QMap>
#include <QIcon>

class resource_manager
{
public:
  enum icon
  {
    octave,
    terminal,
    documentation
  };

  ~resource_manager ();

  static resource_manager *
  instance ()
  {
    return &_singleton;
  }

  QSettings *get_settings ();
  QString get_home_path ();
  void reload_settings ();
  void set_settings (QString file);
  QString find_translator_file (QString language);
  void update_network_settings ();
  void load_icons ();
  QIcon get_icon (icon i);
  bool is_first_run ();
  const char *octave_keywords ();

private:
  resource_manager ();

  QSettings *_settings;
  QString _home_path;
  QMap <icon, QIcon> _icons;
  static resource_manager _singleton;
  bool _first_run;
};

#endif // RESOURCEMANAGER_H