view libgui/src/welcome-wizard.h @ 15758:d90b426b9988

respect charset when syncing directories between octave and gui (bug #37813) * octave-qt-event-listener.cc: signal current_directory_has_changed_signal emitted with directory as QString from local8Bit * main-window.cc: change_current_working_directory () and set_current_working_directory () : post event with directory as std::string to local8Bit;
author Torsten <ttl@justmail.de>
date Sun, 25 Nov 2012 21:52:06 +0100
parents 501a9cc2c68f
children c8c0dff02538
line wrap: on
line source

/*

Copyright (C) 2011-2012 Jacob Dawid

This file is part of Octave.

Octave 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.

Octave 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 Octave; see the file COPYING.  If not, see
<http://www.gnu.org/licenses/>.

*/

#ifndef WELCOMEWIZARD_H
#define WELCOMEWIZARD_H

#include <QDialog>

namespace Ui {
  class welcome_wizard;
}

class welcome_wizard : public QDialog
{
  Q_OBJECT

  public:
  explicit welcome_wizard (QWidget *parent = 0);
  ~welcome_wizard ();

public slots:
  void next ();
  void previous ();

private:
  Ui::welcome_wizard *_ui;
};

#endif // WELCOMEWIZARD_H