1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
|
/******************************************************************************
*
* Copyright (C) 1997-2019 by Dimitri van Heesch.
*
* Permission to use, copy, modify, and distribute this software and its
* documentation under the terms of the GNU General Public License is hereby
* granted. No representations are made about the suitability of this software
* for any purpose. It is provided "as is" without express or implied warranty.
* See the GNU General Public License for more details.
*
*/
#include "inputstring.h"
#include "helplabel.h"
#include "doxywizard.h"
#include "config_msg.h"
#include "config.h"
#include <QComboBox>
#include <QLineEdit>
#include <QGridLayout>
#include <QWheelEvent>
#include <QToolBar>
#include <QFileInfo>
#include <QFileDialog>
class NoWheelComboBox : public QComboBox
{
protected:
void wheelEvent(QWheelEvent *e)
{
e->ignore();
}
};
InputString::InputString( QGridLayout *layout,int &row,
const QString & id, const QString &s,
StringMode m, const QString &docs,
const QString &absPath )
: m_default(s), m_sm(m), m_index(0), m_docs(docs), m_id(id),
m_absPath(absPath==QString::fromLatin1("1"))
{
m_lab = new HelpLabel(id);
m_brFile = 0;
m_brDir = 0;
if (m==StringFixed)
{
layout->addWidget( m_lab, row, 0 );
m_com = new NoWheelComboBox;
layout->addWidget( m_com, row, 1, 1, 3, Qt::AlignLeft );
m_le=0;
m_br=0;
m_im=0;
row++;
}
else
{
layout->addWidget( m_lab, row, 0 );
m_le = new QLineEdit;
m_le->setText( s );
m_im = 0;
//layout->setColumnMinimumWidth(2,150);
if (m==StringFile || m==StringDir || m==StringImage || m==StringFileDir)
{
QHBoxLayout *rowLayout = new QHBoxLayout;
rowLayout->addWidget( m_le);
m_br = new QToolBar;
m_br->setIconSize(QSize(24,24));
if (m==StringFile || m==StringImage || m==StringFileDir)
{
m_brFile = m_br->addAction(QIcon(QString::fromLatin1(":/images/file.png")),QString(),this,SLOT(browseFile()));
m_brFile->setToolTip(tr("Browse to a file"));
if (m==StringImage)
{
m_im = new QLabel;
m_im->setMinimumSize(1,55);
m_im->setAlignment(Qt::AlignLeft|Qt::AlignTop);
row++;
layout->addWidget( m_im,row,1 );
}
}
if (m==StringDir || m==StringFileDir)
{
m_brDir = m_br->addAction(QIcon(QString::fromLatin1(":/images/folder.png")),QString(),this,SLOT(browseDir()));
m_brDir->setToolTip(tr("Browse to a folder"));
}
rowLayout->addWidget( m_br);
layout->addLayout( rowLayout, m==StringImage?row-1:row, 1, 1, 2 );
}
else
{
layout->addWidget( m_le, row, 1, 1, 2 );
m_br=0;
m_im=0;
}
m_com=0;
row++;
}
if (m_le) connect( m_le, SIGNAL(textChanged(const QString&)),
this, SLOT(setValue(const QString&)) );
if (m_com) connect( m_com, SIGNAL(textActivated(const QString &)),
this, SLOT(setValue(const QString &)) );
m_str = s+QChar::fromLatin1('!'); // force update
setValue(s);
connect( m_lab, SIGNAL(enter()), SLOT(help()) );
connect( m_lab, SIGNAL(reset()), SLOT(reset()) );
}
void InputString::help()
{
showHelp(this);
}
InputString::~InputString()
{
}
void InputString::setValue(const QString &s)
{
if (m_str!=s)
{
m_str = s;
m_value = m_str;
updateDefault();
}
}
void InputString::updateDefault()
{
{
if (m_str==m_default || !m_lab->isEnabled())
{
m_lab->setText(QString::fromLatin1("<qt>")+m_id+QString::fromLatin1("</qt>"));
}
else
{
m_lab->setText(QString::fromLatin1("<qt><font color='red'>")+m_id+QString::fromLatin1("</font></qt>"));
}
if (m_im)
{
if (m_str.isEmpty())
{
m_im->setText(tr("No Project logo selected."));
}
else
{
QFile Fout(m_str);
if(!Fout.exists())
{
m_im->setText(tr("Sorry, cannot find file(")+m_str+QString::fromLatin1(");"));
}
else
{
QPixmap pm(m_str);
if (!pm.isNull())
{
m_im->setPixmap(pm.scaledToHeight(55,Qt::SmoothTransformation));
}
else
{
m_im->setText(tr("Sorry, no preview available (")+m_str+QString::fromLatin1(");"));
}
}
}
}
if (m_le && m_le->text()!=m_str) m_le->setText( m_str );
emit changed();
}
}
void InputString::setEnabled(bool state)
{
m_lab->setEnabled(state);
if (m_le) m_le->setEnabled(state);
if (m_im) m_im->setEnabled(state);
if (m_br) m_br->setEnabled(state);
if (m_brFile) m_brFile->setEnabled(state);
if (m_brDir) m_brDir->setEnabled(state);
if (m_com) m_com->setEnabled(state);
updateDefault();
}
void InputString::browseFile()
{
QString path = QFileInfo(MainWindow::instance().configFileName()).path();
QString fileName = QFileDialog::getOpenFileName(&MainWindow::instance(),
tr("Select file"),path);
if (!fileName.isNull())
{
QDir dir(path);
if (!MainWindow::instance().configFileName().isEmpty() && dir.exists())
{
fileName = m_absPath ? fileName : dir.relativeFilePath(fileName);
}
setValue(fileName);
}
}
void InputString::browseDir()
{
QString path = QFileInfo(MainWindow::instance().configFileName()).path();
{
QString dirName = QFileDialog::getExistingDirectory(&MainWindow::instance(),
tr("Select directory"),path);
if (!dirName.isNull())
{
QDir dir(path);
if (!MainWindow::instance().configFileName().isEmpty() && dir.exists())
{
dirName = m_absPath ? dirName : dir.relativeFilePath(dirName);
}
setValue(dirName);
}
}
}
void InputString::clear()
{
setValue(QString());
}
void InputString::addValue(QString s)
{
if (m_sm==StringFixed)
{
m_values.append(s);
m_com->addItem(s);
}
}
void InputString::setDefault()
{
int index = m_values.indexOf(m_str);
if (index!=-1 && m_com) m_com->setCurrentIndex(index);
}
QVariant &InputString::value()
{
return m_value;
}
void InputString::update()
{
setValue(m_value.toString().trimmed());
setDefault();
}
void InputString::reset()
{
setValue(m_default);
setDefault();
}
void InputString::writeValue(QTextStream &t,TextCodecAdapter *codec)
{
writeStringValue(t,codec,m_str);
}
bool InputString::isDefault()
{
return m_str == m_default;
}
QString InputString::checkEnumVal(const QString &value)
{
QString val = value.trimmed().toLower();
QStringList::Iterator it;
for ( it= m_values.begin(); it != m_values.end(); ++it )
{
QString enumVal = *it;
if (enumVal.toLower() == val) return enumVal;
}
config_warn("argument '%s' for option %s is not a valid enum value."
" Using the default: %s!",qPrintable(value),qPrintable(m_id),qPrintable(m_default));
return m_default;
}
|