~ubuntu-branches/ubuntu/quantal/muse/quantal

« back to all changes in this revision

Viewing changes to widgets/splitter.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2002-04-23 17:28:23 UTC
  • Revision ID: james.westby@ubuntu.com-20020423172823-w8yplzr81a759xa3
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//=========================================================
 
2
//  MusE
 
3
//  Linux Music Editor
 
4
//    $Id: splitter.h,v 1.2 2001/11/20 15:19:35 muse Exp $
 
5
//  (C) Copyright 1999 Werner Schweer (ws@seh.de)
 
6
//=========================================================
 
7
 
 
8
#ifndef __SPLITTER_H__
 
9
#define __SPLITTER_H__
 
10
 
 
11
#include <qsplitter.h>
 
12
 
 
13
class Xml;
 
14
 
 
15
//---------------------------------------------------------
 
16
//   Splitter
 
17
//---------------------------------------------------------
 
18
 
 
19
class Splitter : public QSplitter {
 
20
      Q_OBJECT
 
21
 
 
22
   public:
 
23
      Splitter(Qt::Orientation o, QWidget* parent, const char* name);
 
24
      void writeStatus(int level, Xml&);
 
25
      void readStatus(Xml&);
 
26
      };
 
27
 
 
28
#endif
 
29