すぐ忘れる筆者用メモです。 適当に行き会ったものを挙げています。随時追加のつもり。 ラインエディットテキストを入力 QString str; if ( !str.isEmpty() ) { lineEdit->setText( str ); } テキストを取得 QString str = lineEdit->text(); パスワード入力モードにする lineEdit->setEchoMode( QLineEdit::Password ) プロパティなのでQtDesignerで設定が可能です。 チェックボックスチェック状態を取得 if ( checkBox->checkState() == Qt::Checked ) { // チェックされているときの処理 } else { // チェックされていないときの処理 } ファイル選択ダイアログ QFileDialog::Options opti