1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/********************************************************************
* Copyright (C) 2005, 2006 Piotr Pszczolkowski
*-------------------------------------------------------------------
* This file is part of BSCommander (Beesoft Commander).
*
* BSCommander 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 2 of the License, or
* (at your option) any later version.
*
* BSCommander 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 BsC; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*-------------------------------------------------------------------
* Project: Beesoft Commander
* Author : Piotr Pszczolkowski
* Contact: piotr@beesoft.org
*******************************************************************/
#ifndef INCLUDED_LEFTVIEW_H
#define INCLUDED_LEFTVIEW_H
/*------- include files:
-------------------------------------------------------------------*/
#ifndef INCLUDED_QFRAME_H
#include <qframe.h>
#define INCLUDED_QFRAME_H
#endif // INCLUDED_QFRAME_H
#ifndef INCLUDED_QWIDGETSTACK_H
#include <qwidgetstack.h>
#define INCLUDED_QWIDGETSTACK_H
#endif // INCLUDED_QWIDGETSTACK_H
#ifndef INCLUDED_VIEWGENERIC_H
#include "ViewGeneric.h"
#endif // INCLUDED_VIEWGENERIC_H
/*------- class declaration:
-------------------------------------------------------------------*/
class LeftView : public ViewGeneric
{
Q_OBJECT
// ******* CONSTRUCTION *******
public:
LeftView( QWidget* const in_parent, Workspace* const in_workspace );
~LeftView();
private:
LeftView( const LeftView& );
LeftView& operator=( const LeftView& );
// ******* CONSTANTS *******
private:
static const QString ArgPrefix;
static const QString ConfigGroupName;
// ******* METHODS *******
public:
void reconnect ();
void set_focus ();
private:
void add_new_tab ( const QString&, const QString& = "" );
void set_dir_combox ( ViewWindow* const );
private slots:
void slot_set_tab ( int );
void slot_new_tab ( const QString& = "" );
void slot_remove_tab ();
};
#endif // INCLUDED_LEFTVIEW_H
|