ДневникГлавная » 2010 » Август » 22
#include <QDir>
#include <iostream>
int main(int argc, char *argv[])
{
QCoreApplication app(argc, argv);
QDir dir;
dir.setFilter(QDir::Files | QD
...
Читать дальше »
Просмотров:
2890
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
#include <QStringList>
#include <QDebug>
int main()
{
QStringList names;
names << "Alexandr" << "Zub" << "Alexandrovich";
foreach(QString name, names)
...
Читать дальше »
Просмотров:
1812
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
QString fileName = "test.rar"; QFile *file; file = new QFile(fileName); if (!file->open(QIODevice::WriteOnly)) { QMessageBox::information(this, tr("FTP"), tr("Unable to save the file %1: %2.") .arg(fileName).arg(file->errorString())); delete file; return; } ftp->get(filename, file);
Просмотров:
1590
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
//По возрастранию void MainWindow::sortAscending() {
listWidget->sortItems(Qt::AscendingOrder);
} //По убыванию void MainWindow::sortDescending() {
listWidget->sortItems(Qt::DescendingOrder);
}
Просмотров:
2463
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
void MainWindow::removeItem() { listWidget->takeItem(listWidget->row(listWidget->currentItem())); }
Просмотров:
1518
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
QRegExp rx( "^[0-9]*[.]{1}[0-9]*$" ); QValidator *validator = new QRegExpValidator(rx, this); ui->lineEdit_2->setValidator( validator );
Просмотров:
11130
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
lineEdit->setEchoMode(QLineEdit:Password);
Просмотров:
5340
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
your_window->setWindowFlags (Qt::WindowStaysOnTopHint);
Просмотров:
939
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
|
QDir dir; QStringList jpgs = dir.entryList(QStringList("*.jpg")); foreach (QString file, jpgs) qDebug() << file;
Просмотров:
8592
|
Добавил:
qt-boy
|
Дата:
22.08.2010
|
| |
|
Статистика |
---|
Онлайн всего: 1 Гостей: 1 Пользователей: 0 |
|