本文整理汇总了C++中Arguments::getSource方法的典型用法代码示例。如果您正苦于以下问题:C++ Arguments::getSource方法的具体用法?C++ Arguments::getSource怎么用?C++ Arguments::getSource使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Arguments
的用法示例。
在下文中一共展示了Arguments::getSource方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: runCli
int runCli(Arguments & args)
{
QImage * image = new QImage(args.getSource());
if (image->format() != QImage::Format_RGB32)
{
/* For working with image with QImage::bits()
* and qRed(), qGreen() and qBlue() functions. */
*image = image->convertToFormat(QImage::Format_RGB32);
}
if (image->isNull())
{
fatal(QObject::tr("Unable to load source image."));
}
processFilters(image, args.getFilters());
bool ok = image->save(args.getDestination());
if (!ok)
{
fatal(QObject::tr("Unable to save result image."));
}
return 0;
}
示例2: runGui
int runGui(Arguments & args)
{
if (! args.getFilters().isEmpty())
{
fatal(QObject::tr(
"Point destination or remove filters arguments."));
}
MainWindow mainWindow(args.getSource());
mainWindow.show();
return qApp->exec();
}
示例3: main
int main(int argc, char ** argv)
{
QApplication app(argc, argv);
Arguments args;
try
{
args.parse(app.arguments());
} catch(BadArgsException & e)
{
fatal(e.toString(), true);
}
if (args.hasHelpOption())
{
if (! args.getSource().isNull() ||
! args.getDestination().isNull() ||
! args.getFilters().isEmpty())
{
qDebug() << "Option --help pointed,"
" all others are ignored.";
}
helpWrite();
return 0;
}
if (! args.getSource().isNull() &&
! args.getDestination().isNull())
{
return runCli(args);
}
else
{
return runGui(args);
}
}