Development/Tutorials/KDE3/Qt Designer and KDevelop 3.0 for Beginners/ja: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

5 May 2013

  • curprev 10:5910:59, 5 May 2013Phanect talk contribs 42,447 bytes −40 Created page with "KDE プログラムで使用される全ての文字列は i18n() 関数(klocale.h で宣言されている)で囲まれる必要があります。 これについては Chapt..."
  • curprev 10:5810:58, 5 May 2013Phanect talk contribs 42,487 bytes +92 Created page with "signal/slot についてもう少しだけ説明しておきます。 signal/slot 機構は型について厳格です。 signal の型は slot の型に一致しなければ..."
  • curprev 10:5710:57, 5 May 2013Phanect talk contribs 42,395 bytes −1 No edit summary
  • curprev 10:5710:57, 5 May 2013Phanect talk contribs 42,396 bytes +95 Created page with "最後にビルドを行います。次の手順を踏んで下さい。<menuchoice>Build -> Run automake & friends</menuchoice>, <menuchoice>Build-> Run Configure</menuchoice..."
  • curprev 10:5510:55, 5 May 2013Phanect talk contribs 42,301 bytes +24 Created page with "そして header ファイルに次の3行を加えて下さい。"
  • curprev 10:5510:55, 5 May 2013Phanect talk contribs 42,277 bytes +30 Created page with "この括弧の間に次の4行を挿入します。"
  • curprev 10:5510:55, 5 May 2013Phanect talk contribs 42,247 bytes +48 Created page with "それでは、最後に sigcreate.cpp のソースファイルを開いて、 slot を実装しましょう。 次の様な括弧で囲まれた部分を見て下さい。"
  • curprev 10:5410:54, 5 May 2013Phanect talk contribs 42,199 bytes 0 Created page with "===スロットの実装==="
  • curprev 10:5310:53, 5 May 2013Phanect talk contribs 42,199 bytes +105 Created page with "main.cpp に何行かのコードを書く必要が有ります。 template では KMainWindow というクラスが通常基底クラスとして使用されるのですが..."
  • curprev 10:5210:52, 5 May 2013Phanect talk contribs 42,094 bytes +52 Created page with "{{Note|1=Qt デザイナーで作成した slot が表示されているのが分かります。 この関数は生成されたファイルで実装されることになりま..."
  • curprev 10:5110:51, 5 May 2013Phanect talk contribs 42,042 bytes +68 Created page with "In the <menuchoice>Automake Manager -> sigcreate (program in bin)</menuchoice>, right click on sigcreatedlg.ui and choose <menuchoice>Subclass Widget...</menuchoice> from the ..."
  • curprev 10:4810:48, 5 May 2013Phanect talk contribs 41,974 bytes +185 Created page with "sigcreate クラスは直接はここでは使用せず、sigcreatedlg.ui のサブクラスを作成します。 <menuchoice>Automake Manager</menuchoice> で sigcreate.cpp ..."
  • curprev 10:4610:46, 5 May 2013Phanect talk contribs 41,789 bytes +68 Created page with "さて、''SigCreate'' という名前の簡単なプロジェクトを開始して sigcreatedlg.ui というファイルをプロジェクトに追加しますた。<menuchoi..."
  • curprev 10:4410:44, 5 May 2013Phanect talk contribs 41,721 bytes +62 Created page with "このチュートリアルでは ''Automake Manager'' の KDevelop subclassing tool を用います。 この機能を持っていない古い KDevelop を使っている場..."
  • curprev 10:4410:44, 5 May 2013Phanect talk contribs 41,659 bytes −3 Created page with "===ソースの生成==="

30 January 2012

  • curprev 13:0113:01, 30 January 2012Phanect talk contribs 41,662 bytes +90 Created page with "この行程を Cancel ボタンについても行います。clicked() シグナルに close() スロットを繋げて下さい。これであなたはシグナル/スロット..."
  • curprev 13:0013:00, 30 January 2012Phanect talk contribs 41,572 bytes +45 Created page with "接続を確立するためには適切なシグナル (この場合は <menuchoice>clicked()</menuchoice>) とスロット (この場合は先程新しく作った<menuchoice>sl..."
  • curprev 12:5912:59, 30 January 2012Phanect talk contribs 41,527 bytes +161 Created page with "right|thumb|350px スロットを作成するには、<menuchoice>Edit Slots</menuchoice> ボタンをクリックします。すると slot ..."
  • curprev 12:5612:56, 30 January 2012Phanect talk contribs 41,366 bytes +72 Created page with "いま私達がしたいのは Create! ボタンがクリックされた時に signature を作成するスロットを作成することです。この場合シグナルはclick..."
  • curprev 12:5412:54, 30 January 2012Phanect talk contribs 41,294 bytes +104 Created page with "right|thumb|350px. まずはCreate!ボタンを扱って見ましょう。最初に<menuchoice>Connect Signal/Slot</menuchoice>アイコン..."
  • curprev 12:5012:50, 30 January 2012Phanect talk contribs 41,190 bytes +210 Created page with "既にウィジットが追加されレイアウトを施されているので、最後にすべきプログラム作成の行程がシグナル/スロット接続を確立する..."
  • curprev 12:4812:48, 30 January 2012Phanect talk contribs 40,980 bytes +102 Created page with "[http://doc.trolltech.com/3.0/signalsandslots.html シグナルとスロット]は Qt オブジェクト間の通信に使われます。シグナル/スロット機構は Qt の..."
  • curprev 12:4512:45, 30 January 2012Phanect talk contribs 40,878 bytes +10 Created page with "===シグナルとスロット==="
  • curprev 12:4512:45, 30 January 2012Phanect talk contribs 40,868 bytes −21 Created page with "To finish the layout, we need to let the form look after the laid-out boxes. 全てをgridに配置します。フォームを右クリックし、<menuchoice>Lay Out in a Grid</..."
  • curprev 12:4412:44, 30 January 2012Phanect talk contribs 40,889 bytes +284 No edit summary
  • curprev 12:4212:42, 30 January 2012Phanect talk contribs 40,605 bytes +18 Created page with "この操作を GroupBox のなかの3つのラベルについても行って下さい。ただし、この場合は Vertical レイアウトを使用します。また、2つの..."
  • curprev 12:4012:40, 30 January 2012Phanect talk contribs 40,587 bytes +387 Created page with "これでブランクスペースを埋めるスペーサーを作りましたが、まだ適切なレイアウトを施す必要があります。これによってメインウ..."
  • curprev 12:3712:37, 30 January 2012Phanect talk contribs 40,200 bytes +261 Created page with "left|thumb|350px まず最初にスペーサーを使って上部のテキストを中央に配置してみましょう。ラベルを..."
  • curprev 12:3412:34, 30 January 2012Phanect talk contribs 39,939 bytes +69 Created page with "スペーサーの使い方は試行錯誤を繰り返す中で身に付けて行く技術です。スペーサーついて覚えておかなければならない事は、まず..."
  • curprev 12:3312:33, 30 January 2012Phanect talk contribs 39,870 bytes +396 Created page with "この章ではレイアウト管理を説明します。プレビューでウィンドウのサイズを変えるとウィジットがきちんと配置されなくなること..."
  • curprev 12:3012:30, 30 January 2012Phanect talk contribs 39,474 bytes +52 Created page with "最後に保存して下さい。 メニューから <menuchoice>Preview -> Preview Form</menuchoice> を使ってフォームのプレビューを見る事が出来ます。This..."
  • curprev 12:3012:30, 30 January 2012Phanect talk contribs 39,422 bytes +117 Created page with "''Generated Signature'' というテキストラベルを追加して下さい。そして最後にそのラベルの下に生成された signature を表示するTextEdit (<men..."
  • curprev 12:2712:27, 30 January 2012Phanect talk contribs 39,305 bytes +267 Created page with "thumb|350px ここまでに配置したウィジットには名前を付けていませんでした。後でプログラム内で..."
  • curprev 11:3711:37, 30 January 2012Phanect talk contribs 39,038 bytes +17 Created page with "見栄えが良くなる様にウィジットのサイズを調節して下さい。"
  • curprev 11:3711:37, 30 January 2012Phanect talk contribs 39,021 bytes +185 Created page with "次にユーザーが気の利いたコメントを選択できるようにしましょう。ComboBox を用いてユーザーが3つのコメントから選べるようにしま..."
  • curprev 11:3411:34, 30 January 2012Phanect talk contribs 38,836 bytes +255 Created page with "この手順を追えたら、次はテキストボックスを作成します。これによってユーザーは名前とメールアドレスを入力することができる..."
  • curprev 11:3111:31, 30 January 2012Phanect talk contribs 38,581 bytes +27 Created page with "ダブルクリックしてラベルのテキストを変更して下さい。"
  • curprev 11:3111:31, 30 January 2012Phanect talk contribs 38,554 bytes −5 Created page with "GroupBox を作成した後は、今度は GroupBox 内に3つのラベルを配置して下さい。 Object Explorer box (<menuchoice>Windows menu -> Views -> Object Explorer</m..."
  • curprev 11:3011:30, 30 January 2012Phanect talk contribs 38,559 bytes +192 Created page with "Qt Designer の興味深い点は、ウィジットが他のウィジットのコンテナになることができるという事です。これはフレーム内に入力欄を..."
  • curprev 11:2511:25, 30 January 2012Phanect talk contribs 38,367 bytes +10 Created page with ""選択、ドラッグ、プロパティとサイズの変更"という操作で Qt Designer でサポートされているどんなウィジットも埋め込む事が出来ま..."
  • curprev 11:2411:24, 30 January 2012Phanect talk contribs 38,357 bytes +198 Created page with "# このテキストを変更する為には、ラベルをダブルクリックして ''TextLabel1'' の代わりに違うテキストを挿入します。ここでは {{Input|1..."
  • curprev 11:2111:21, 30 January 2012Phanect talk contribs 38,159 bytes +140 Created page with "# フォームの上にカーソルを持って行くと十字架になるので、ぺイントプログラムで四角形を描く様にマウスを操作して下さい。(一..."
  • curprev 11:2111:21, 30 January 2012Phanect talk contribs 38,019 bytes +42 Created page with "# 左側の ToolBox で <menuchoice>Common Widgets->TextLabel</menuchoice> を選択する、もしくはメニューバーから <menuchoice>Tools->Display->TextLabel</menuchoic..."
  • curprev 11:2011:20, 30 January 2012Phanect talk contribs 37,977 bytes +68 Created page with "このテキストはユーザーにプログラムの使い方を教えるもので、この種のウィジットは ''Label'' と呼ばれており、次のようにして設..."
  • curprev 11:2011:20, 30 January 2012Phanect talk contribs 37,909 bytes +17 Created page with "まず始めに、以下のようにウィンドウの上部にテキストを挿入してみましょう。 center|thumb|350px"
  • curprev 11:1911:19, 30 January 2012Phanect talk contribs 37,892 bytes +3 No edit summary

29 January 2012