~ubuntu-branches/ubuntu/precise/ipe/precise

« back to all changes in this revision

Viewing changes to src/ipe/styles.h

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2007-01-09 23:14:51 UTC
  • mfrom: (3.1.4 feisty)
  • Revision ID: james.westby@ubuntu.com-20070109231451-3nd095g7ishc108l
Tags: 6.0pre27-3
* debian/gsfonts-fontmap.xml: New.  Fontmap for fonts from gsfonts package.
* debian/rules: Use gsfonts-fontmap.xml instead of tetex-fontmap.xml.
* debian/control: Add texlive-latex-base dependency as alternative to
  tetex-bin (for pdflatex) and replace tetex-extra by gsfonts (for font
  files).  Patch courtesy of Norbert Preining.  Closes: #378537.

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
/*
6
6
 
7
7
    This file is part of the extensible drawing editor Ipe.
8
 
    Copyright (C) 1993-2004  Otfried Cheong
 
8
    Copyright (C) 1993-2005  Otfried Cheong
9
9
 
10
10
    Ipe is free software; you can redistribute it and/or modify it
11
11
    under the terms of the GNU General Public License as published by
32
32
#ifndef STYLES_H
33
33
#define STYLES_H
34
34
 
35
 
#include "dlgstyles.h"
 
35
#include "ui_dlgstyles.h"
36
36
 
37
37
// --------------------------------------------------------------------
38
38
 
39
39
class IpeDocument;
40
 
class QListBoxItem;
 
40
class Q3ListBoxItem;
41
41
 
42
 
class DialogStyles : public DlgStyles {
 
42
class DialogStyles : public QDialog, Ui::DlgStyles {
43
43
  Q_OBJECT
44
44
public:
45
45
  DialogStyles(QWidget* parent, IpeDocument *doc);
50
50
  virtual void Save();
51
51
  virtual void MoveUp();
52
52
  virtual void MoveDown();
53
 
  virtual void CurrentChanged(QListBoxItem *);
 
53
private slots:
 
54
  void CurrentChanged();
54
55
private:
55
56
  void ErrMsg(QString str);
56
57
  void UpdateList();