~ubuntu-branches/ubuntu/oneiric/avidemux/oneiric-proposed

« back to all changes in this revision

Viewing changes to avidemux/ADM_UIs/ADM_QT4/src/FAC_readOnlyText.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-08-20 08:42:44 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20090820084244-bhh15xxd7x2vbcuh
Tags: 1:2.5.1+repack-0ubuntu1
* New upstream bugfix release (LP: #416066):
  - Re-enabled several video and audio encoders (regression introduced
    in 2.5.0)
  - Updated the FFmpeg libraries
  - More video encoders are now plugins
  - DV video encoder now supports more profiles
  - Fixed loading and saving issues with LAME, x264 and Xvid options
    (regression introduced in 2.5.0)
  - Fraps video decoding support
  - Lowpass-5 mode added to libavcodec deinterlacer filter plugin
  - Fixed formatting of parameters for various filters on 64-bit platforms
  - Updated libass
  - Fixed sizing of the bitrate control on various video encoder configure
    windows (regression introduced in 2.5.0)
  - Improved filter dialog for GTK+ interface
  - New navigation icons for GTK+ interface
  - Fixed the behaviour of several GTK+ open/save dialogs (regression
    introduced in 2.5.0)
  - asharp filter's Block Adaptive mode can now be disabled using the Qt
    interface
  - Re-enabled the colour chooser dialog using the Qt interface (regression
    introduced in 2.5.0)
  - GCC 4.4 support
  - Fixed issues with CMake build scripts when using multiple make jobs
    (regression introduced in 2.5.0)
* Remove debian/patches dir and drop all patches, now applied by upstream.
* Drop quilt support.
* debian/libavidemux0.install: Also install missing libraries.
* Move debian/install to debian/avidemux.install.
* debian/rules:
  - Build the internal ffmpeg version properly (thanks to Christian Marillat).
  - A bit of cleanup.
* debian/control:
  - Bump Standards-Version.
  - Update Homepage field.
  - Adjust libavidemux0 short description.
  - gtk -> GTK, qt -> QT.
  - Set myself as Maintainer.
* Repack the tarball to remove the debian/ dir provided by upstream:
  - Create debian/README.source.
  - Update debian/watch.
  - Add get-orig-source target to debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
37
37
  void setMe(void *dialog, void *opaque,uint32_t line);
38
38
  void getMe(void);
39
39
  int getRequiredLayout(void);
 
40
  void updateMe(void);
40
41
};
41
42
 
42
43
class diaElemText : public diaElem
50
51
  void getMe(void);
51
52
  void enable(uint32_t onoff);
52
53
  int getRequiredLayout(void);
 
54
  void updateMe(void);
53
55
};
54
56
 
55
57
//********************************************************************
88
90
}
89
91
 
90
92
int diaElemReadOnlyText::getRequiredLayout(void) { return FAC_QT_GRIDLAYOUT; }
91
 
 
 
93
void diaElemReadOnlyText::updateMe(void) {};
92
94
//*********************************
93
95
 
94
96
diaElemText::diaElemText(char **text,const char *toggleTitle,const char *tip)
140
142
}
141
143
 
142
144
int diaElemText::getRequiredLayout(void) { return FAC_QT_GRIDLAYOUT; }
 
145
 
 
146
void diaElemText::updateMe(void)
 
147
{
 
148
        char **c=(char **)param;
 
149
        QLineEdit *lineEdit=(QLineEdit *)myWidget;
 
150
 
 
151
        lineEdit->setText(*c);
 
152
}
143
153
} // End of namespace
144
154
//****************************Hoook*****************
145
155