コード例 #1
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorDiskFull()
{
  showError(0, i18n("Error while writing image file: disk full!"));
}
コード例 #2
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorWritingSuperblock(signed int err)
{
  showError(err, i18n("Can't write SuperBlock"));
}
コード例 #3
0
ファイル: introphone.cpp プロジェクト: HoTaeWang/tdesktop
void IntroPhone::onInputChange() {
	changed = true;
	showError("");
}
コード例 #4
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorWritingDisk(DWORD block, signed int err)
{
  showError(err, i18n("Can't write block %ld to harddrive"), block);
}
コード例 #5
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorReadingHeader(char * header, signed int err)
{
  showError(err, i18n("Can't read %s from image"), header);
}
コード例 #6
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorReadingMBRMagic()
{
  showError(0, i18n("Can't read MBR Magic: image file was damaged"));
}
コード例 #7
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorWritingBitmap(DWORD block, signed int err)
{
  showError(err, i18n("Can't write bitmap block %ld to image"), block);
}
コード例 #8
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorAskFirstVolume(char * szVolume)
{
  showError(0, i18n("%s is not the first volume of an image. Please, retry with "
		    "the volume number 000"), szVolume);
}
コード例 #9
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorInvalidImagefile(char * szFilename)
{
  showError(0, i18n("%s is not a valid partition image file."), szFilename);
}
コード例 #10
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorReadingMainTail()
{
  showError(0, i18n("Can't read main tail"));
}
コード例 #11
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorEncryption()
{
  showError(0, i18n("The image you try to restore was encrypted. The current "
		    "version doesn't support encryption. Please, download the latest version "
		    "of partimage."));
}
コード例 #12
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorWritingMainTail()
{
  showError(0, i18n("Can't write main tail"));
}
コード例 #13
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorWritingMainHeader()
{
  showError(0, i18n("Can't write main header"));
}
コード例 #14
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorDetectingFS(char * szDevice, signed int err)
{
  showError(0, i18n("Can't detect file system of partition %s"), szDevice);
}
コード例 #15
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorWritingInfos()
{
  showError(0, i18n("Can't write informations"));
}
コード例 #16
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorTooSmall(QWORD qwOriginalSize, QWORD qwSize)
{
  showError(0, i18n("The partition is to small to be restored:\n"
		    "Original partition size:........%llu bytes\n"
		    "Destination partition size:.....%llu bytes"), qwOriginalSize, qwSize);
}
コード例 #17
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorReadingInfos()
{
  showError(0, i18n("Can't read informations"));
}
コード例 #18
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorWrongVolumeNumber(DWORD dwExpectedVolume, DWORD dwVolume)
{
  showError(1, i18n("Invalid volume number (%ld instead of %ld)."),
	    dwVolume, dwExpectedVolume);
}
コード例 #19
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorWritingHeader(char * header, signed int err)
{
  showError(err, i18n("Can't write %s to image"), header);
}
コード例 #20
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorClosing()
{
  showError(0, i18n("Error on close"));
}
コード例 #21
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorReadingBitmap(DWORD block, signed int err)
{
  showError(err, i18n("Can't read bitmap block %ld from image"), block);
}
コード例 #22
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorAlreadyLocked(char * szPartition, signed int err)
{
  showDebug(1, "STR3=%s\n", szPartition);
  showError(err, i18n("The partition %s is already locked by another process."
     " Can't work on it"), szPartition);
}
コード例 #23
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorReading(DWORD block, signed int err)
{
  showError(err, i18n("Can't read block %ld from image (%d)"), block);
}
コード例 #24
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorOpeningPartition(const char * szDevice, signed int err)
{
  showError(err, i18n("Can't open partition %s"), szDevice);
}
コード例 #25
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorReadingSuperblock(signed int err)
{
  showError(err, i18n("Can't read SuperBlock"));
}
コード例 #26
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorLocking(char * szFilename, signed int err)
{
  showError(err, i18n("Can't lock partition %s"), szFilename);
}
コード例 #27
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
void CInterface::ErrorReadingDiskBitmap(DWORD block, signed int err)
{
  showError(err, i18n("Can't read bitmap block %ld from harddrive partition (%s)"),block);
}
コード例 #28
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorReadingMainHeader()
{
  showError(0, i18n("Can't read main header: image file was damaged"));
}
コード例 #29
0
ファイル: bookwindow.cpp プロジェクト: CodeDJ/qt5-hidpi
BookWindow::BookWindow()
{
    ui.setupUi(this);

    if (!QSqlDatabase::drivers().contains("QSQLITE"))
        QMessageBox::critical(this, "Unable to load database", "This demo needs the SQLITE driver");

    // initialize the database
    QSqlError err = initDb();
    if (err.type() != QSqlError::NoError) {
        showError(err);
        return;
    }

    // Create the data model
    model = new QSqlRelationalTableModel(ui.bookTable);
    model->setEditStrategy(QSqlTableModel::OnManualSubmit);
    model->setTable("books");

    // Remember the indexes of the columns
    authorIdx = model->fieldIndex("author");
    genreIdx = model->fieldIndex("genre");

    // Set the relations to the other database tables
    model->setRelation(authorIdx, QSqlRelation("authors", "id", "name"));
    model->setRelation(genreIdx, QSqlRelation("genres", "id", "name"));

    // Set the localized header captions
    model->setHeaderData(authorIdx, Qt::Horizontal, tr("Author Name"));
    model->setHeaderData(genreIdx, Qt::Horizontal, tr("Genre"));
    model->setHeaderData(model->fieldIndex("title"), Qt::Horizontal, tr("Title"));
    model->setHeaderData(model->fieldIndex("year"), Qt::Horizontal, tr("Year"));
    model->setHeaderData(model->fieldIndex("rating"), Qt::Horizontal, tr("Rating"));

    // Populate the model
    if (!model->select()) {
        showError(model->lastError());
        return;
    }

    // Set the model and hide the ID column
    ui.bookTable->setModel(model);
    ui.bookTable->setItemDelegate(new BookDelegate(ui.bookTable));
    ui.bookTable->setColumnHidden(model->fieldIndex("id"), true);
    ui.bookTable->setSelectionMode(QAbstractItemView::SingleSelection);

    // Initialize the Author combo box
    ui.authorEdit->setModel(model->relationModel(authorIdx));
    ui.authorEdit->setModelColumn(model->relationModel(authorIdx)->fieldIndex("name"));

    ui.genreEdit->setModel(model->relationModel(genreIdx));
    ui.genreEdit->setModelColumn(model->relationModel(genreIdx)->fieldIndex("name"));

    QDataWidgetMapper *mapper = new QDataWidgetMapper(this);
    mapper->setModel(model);
    mapper->setItemDelegate(new BookDelegate(this));
    mapper->addMapping(ui.titleEdit, model->fieldIndex("title"));
    mapper->addMapping(ui.yearEdit, model->fieldIndex("year"));
    mapper->addMapping(ui.authorEdit, authorIdx);
    mapper->addMapping(ui.genreEdit, genreIdx);
    mapper->addMapping(ui.ratingEdit, model->fieldIndex("rating"));

    connect(ui.bookTable->selectionModel(), SIGNAL(currentRowChanged(QModelIndex,QModelIndex)),
            mapper, SLOT(setCurrentModelIndex(QModelIndex)));

    ui.bookTable->setCurrentIndex(model->index(0, 0));
}
コード例 #30
0
ファイル: interface_base.cpp プロジェクト: kohtala/partimage
// =======================================================
void CInterface::ErrorNewerRelease()
{
  showError(0, i18n("The partition was saved with a newer version of Partion Image. "
		    "Please download the last one.")); 
}