~ubuntu-branches/ubuntu/karmic/avidemux/karmic-proposed

« back to all changes in this revision

Viewing changes to avidemux/ADM_userInterfaces/ADM_QT4/ADM_dialogFactory/FAC_hex.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2009-02-17 23:41:46 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090217234146-eakx254awuch4wgw
Tags: 1:2.4.4-0.0ubuntu1
* Merge from debian multimedia, Ubuntu remaining changes:
  - debian/control:
    + Build-Depends on newer libx264-dev.
    + Don't Build-Depends on ccache and libamrnb-dev.
    + Build-Depends on libpulse-dev.
    + Fixed small typo in avidemux description.
  - Don't use ccache.
  - Drop patch to fix build with newer x264, it has been merged by upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
 *                                                                         *
14
14
 ***************************************************************************/
15
15
 
16
 
#include <config.h>
17
 
 
18
 
 
19
 
#include <string.h>
20
 
#include <stdio.h>
21
 
#include <stdlib.h>
22
 
#include <math.h>
23
 
 
24
 
#include <QDialog>
25
 
#include <QMessageBox>
26
 
#include <QGridLayout>
27
 
#include <QCheckBox>
28
 
 
 
16
#include "config.h"
29
17
#include "default.h"
30
18
#include "ADM_commonUI/DIA_factory.h"
31
19
#include "ADM_assert.h"
 
20
#include "dialogFactoryQt4.h"
32
21
 
33
22
extern const char *shortkey(const char *);
34
23
  diaElemHex::diaElemHex(const char *toggleTitle, uint32_t dataSize,uint8_t *data) :diaElem(ELEM_HEXDUMP){};
36
25
  void diaElemHex::setMe(void *dialog, void *opaque,uint32_t line) {};
37
26
  void diaElemHex::getMe(void) {} ;
38
27
  void diaElemHex::finalize(void) {};
 
28
  int diaElemHex::getRequiredLayout(void) { return FAC_QT_GRIDLAYOUT; }
39
29
//******************************************************
40
30
 
41
31
//EOF