MainWindow.h
上传用户:weiliju62
上传日期:2007-01-06
资源大小:619k
文件大小:4k
源码类别:

SCSI/ASPI

开发平台:

MultiPlatform

  1. /*  cdrdao - write audio CD-Rs in disc-at-once mode
  2.  *
  3.  *  Copyright (C) 1998  Andreas Mueller <mueller@daneb.ping.de>
  4.  *
  5.  *  This program is free software; you can redistribute it and/or modify
  6.  *  it under the terms of the GNU General Public License as published by
  7.  *  the Free Software Foundation; either version 2 of the License, or
  8.  *  (at your option) any later version.
  9.  *
  10.  *  This program is distributed in the hope that it will be useful,
  11.  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  *  GNU General Public License for more details.
  14.  *
  15.  *  You should have received a copy of the GNU General Public License
  16.  *  along with this program; if not, write to the Free Software
  17.  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  */
  19. /*
  20.  * $Log: MainWindow.h,v $
  21.  * Revision 1.5  1999/05/24 18:10:25  mueller
  22.  * Adapted to new reading interface of 'trackdb'.
  23.  *
  24.  * Revision 1.4  1999/02/28 10:59:07  mueller
  25.  * Adapted to changes in 'trackdb'.
  26.  *
  27.  * Revision 1.3  1999/01/30 19:45:43  mueller
  28.  * Fixes for compilation with Gtk-- 0.11.1.
  29.  *
  30.  * Revision 1.2  1999/01/30 15:11:13  mueller
  31.  * First released version. Compiles with Gtk-- 0.9.14.
  32.  *
  33.  * Revision 1.1  1998/11/20 18:54:34  mueller
  34.  * Initial revision
  35.  *
  36.  */
  37. #ifndef __MAIN_WINDOW_H__
  38. #define __MAIN_WINDOW_H__
  39. #include <gtk--.h>
  40. #include <gtk/gtk.h>
  41. #include "Toc.h"
  42. class SampleDisplay;
  43. class AddSilenceDialog;
  44. class Toc;
  45. class Track;
  46. class SoundIF;
  47. class Sample;
  48. class TrackData;
  49. class TocEdit;
  50. class MainWindow : public Gtk_Window
  51. {
  52. private:
  53.   enum Mode { ZOOM, SELECT };
  54.   TocEdit *tocEdit_;
  55.   Mode mode_;
  56.   Gtk_VBox vbox_;
  57.   Gtk_ItemFactory *itemFactory_;
  58.   Gtk_ObjectHandle<Gtk_MenuBar> menuBar_;
  59.   TocReader tocReader;
  60.   SoundIF *soundInterface_;
  61.   unsigned long playLength_; // remaining play length
  62.   unsigned long playBurst_;
  63.   unsigned long playPosition_;
  64.   Sample *playBuffer_;
  65.   int playing_;
  66.   int playAbort_;
  67.   SampleDisplay *sampleDisplay_;
  68.   Gtk_Statusbar *statusBar_;
  69.   guint lastMessageId_;
  70.   Gtk_FileSelection *fileSelector_;
  71.   Connection fileSelectorC1_;
  72.   Connection fileSelectorC2_;
  73.   Gtk_RadioButton *zoomButton_;
  74.   Gtk_RadioButton *selectButton_;
  75.   Gtk_Button *playButton_;
  76.   
  77.   Gtk_Entry *markerPos_;
  78.   Gtk_Entry *cursorPos_;
  79.   Gtk_Entry *selectionStartPos_;
  80.   Gtk_Entry *selectionEndPos_;
  81.   void createMenuBar();
  82.   void setMode(Mode);
  83.   void markerSetCallback(unsigned long);
  84.   void cursorMovedCallback(unsigned long);
  85.   void selectionSetCallback(unsigned long, unsigned long);
  86.   void trackMarkSelectedCallback(const Track *, int trackNr, int indexNr);
  87.   void trackMarkMovedCallback(const Track *, int trackNr, int indexNr,
  88.       unsigned long sample);
  89.   const char *sample2string(unsigned long sample);
  90.   unsigned long string2sample(const char *s);
  91.   int snapSampleToBlock(unsigned long sample, long *block);
  92.   void statusMessage(const char *fmt, ...);
  93.   int getMarker(unsigned long *sample);
  94.   void readTocCallback(int);
  95.   void saveAsTocCallback(int);
  96.   int playCallback();
  97.   void tocBlockedMsg(const char *);
  98.   void appendTrack();
  99.   void appendFile();
  100.   void insertFile();
  101.   void appendSilence();
  102.   void insertSilence();
  103.   void trackInfo();
  104.   void tocInfo();
  105.   void cutTrackData();
  106.   void pasteTrackData();
  107.   void quit();
  108.   void newToc();
  109.   void readToc();
  110.   void saveToc();
  111.   void saveAsToc();
  112.   void zoomIn();
  113.   void zoomOut();
  114.   void fullView();
  115.   void play();
  116.   void addTrackMark();
  117.   void addIndexMark();
  118.   void addPregap();
  119.   void removeTrackMark();
  120.   void markerSet();
  121.   void selectionSet();
  122.   void configureDevices();
  123.   void record();
  124. public:
  125.   MainWindow(TocEdit *);
  126.   TocEdit *tocEdit() const { return tocEdit_; }
  127.   
  128.   void update(unsigned long level);
  129.   gint delete_event_impl(GdkEventAny*);
  130. };
  131. #endif