Microsoft Word - MDOnline 2001.

Size: px
Start display at page:

Download "Microsoft Word - MDOnline 2001."

Transcription

1 NSToolbar NSToolbarItem - 1 -

2 Font Style Font Size セパレータ Blue Text Print : 文字修飾 ( Plain Text Bold Italic ) をメニューから変更する : 文字サイズをステッパーで変更する : 区切りを表示する : 文字色を青と黒に交互に切替える : テキストビューを印刷する NSTextView blueletter.tif - 2 -

3 Print : ( NSToolbarPrintItemIdentifier ) Colors : ( NSToolbarShowColorsItemIdentifier ) Fonts : ( NSToolbarShowFontsItemIdentifier ) Customize : ( NSToolbarCustomizeToolbarItemIdentifier ) Space : ( NSToolbarSpaceItemIdentifier ) Flexible Space : ( NSToolbarFlexibleSpaceItemIdentifier ) Separator : ( NSToolbarSeparatorItemIdentifier ) NSToolbar...ItemIdentifier - 3 -

4 - 4 -

5 NSToolbar - 5 -

6 Controller Controller.m toolbaralloweditemidentifiers : - 6 -

7 Controller.m > toolbaralloweditemidentifiers - (NSArray *) toolbaralloweditemidentifiers : (NSToolbar*) toolbar { return [ NSArray NSToolbarSpaceItemIdentifier, NSToolbarFlexibleSpaceItemIdentifier, NSToolbarPrintItemIdentifier, nil ]; NSToolbar...ItemIdentifier toolbardefaultitemidentifiers : Controller.m > toolbardefaultitemidentifiers - (NSArray *) toolbardefaultitemidentifiers : (NSToolbar *) toolbar { return [ NSArray NSToolbarPrintItemIdentifier, nil ]; - 7 -

8 NSToolbarDelegate : - (NSArray *) toolbaralloweditemidentifiers : (NSToolbar*) toolbar toolbar : : ( ) NSToolbar ( ) NSToolbarDelegate : - (NSArray *) toolbardefaultitemidentifiers : (NSToolbar*) toolbar toolbar : : ( ) NSToolbar ( ) - 8 -

9 Controller.m > toolbaralloweditemidentifiers - (NSArray *) toolbaralloweditemidentifiers : (NSToolbar*) toolbar { ); // 追加 return [ NSArray arraywithobjects : : 以下の3 行を追加 NSToolbarShowColorsItemIdentifier, NSToolbarShowFontsItemIdentifier, NSToolbarCustomizeToolbarItemIdentifier, nil ]; Controller.m > toolbardefaultitemidentifiers - (NSArray *) toolbardefaultitemidentifiers : (NSToolbar *) toolbar { ); // 追加 return [ NSArray arraywithobjects : : 以下の1 行を追加 NSToolbarCustomizeToolbarItemIdentifier, nil ]; NSLog NSLog - 9 -

10 toolbardefaultitemidentifiers : image label NSToolbarDelegate : - (NSToolbarItem *) toolbar : (NSToolbar *) toolbar itemforitemidentifier : (NSString *) itemidentifier willbeinsertedintotoolbar : (BOOL ) flag toolbar : itemidentifier : flag : : itemidentifier NSToolbar ( ) ( flag = YES ) ( ) ( flag = NO ) ( flag = YES ) NSMutableDictionaryController.m awakefromnib

11 Controller.m > awakefromnib - (void) awakefromnib { : 省略 // アイテム辞書作成 toolbaritems = [ [ NSMutableDictionary dictionary ] retain ]; // ツールバーアイテムを辞書 (toolbaritems) に登録 addtoolbaritem( 省略 ); // Font Style addtoolbaritem( 省略 ); // Font Size addtoolbaritem( 省略 ); // Blue Text : 省略 Controller.m Controller.m > toolbar : itemforitemidentifier : willbeinsertedintotoolbar : - (NSToolbarItem *) toolbar : (NSToolbar *) toolbar itemforitemidentifier : (NSString *) itemidentifier willbeinsertedintotoolbar : (BOOL ) flag { NSToolbarItem *newitem = [ [ [ NSToolbarItem alloc ] initwithitemidentifier : itemidentifier ] autorelease ]; // アイテムを作成 // アイテム辞書から取り出し NSToolbarItem *item = [ toolbaritems objectforkey : itemidentifier ]; : 省略 ( アイテムのコピー処理 ) return newitem; alloc initwithitemidentifier : objectforkey : NSToolbarItem : - (id) initwithitemidentifier : (NSString *) itemidentifier itemidentifier : : NSToolbarItem

12 Controller.m > toolbar : itemforitemidentifier : willbeinsertedintotoolbar : // メソッド中のどこかに追加 toolbar : %@", [ toolbar identifier ] ); itemforitemidentifier : %@", itemidentifier ); : %@", ); flag flag

13 Controller fontstylemenu

14 1 ( )

15 nib ( ) (nib) awakefromnib awakefromnib Controller.m > awakefromnib - (void) awakefromnib { : 省略 NSToolbar *toolbar = [ [ [ NSToolbar alloc ] initwithidentifier ] autorelease ]; // ツールバーを作成 // アイテム辞書作成 toolbaritems = [ [ NSMutableDictionary dictionary ] retain ]; // ツールバーアイテムを辞書 (toolbaritems) に登録 addtoolbaritem( 省略 ); // Font Style addtoolbaritem( 省略 ); // Font Size addtoolbaritem( 省略 ); // Blue Text // ツールバーの属性をセット [ toolbar setdelegate : self ]; // デリゲートをセット [ toolbar setallowsusercustomization : YES ]; // 設定パレットを使う [ toolbar setautosavesconfiguration : YES ]; // 設定の自動保存をする [ toolbar setdisplaymode : NSToolbarDisplayModeIconOnly ]; // 表示モード設定 [ thewindow settoolbar : toolbar ]; // ツールバーをウィンドウにセット : 省略 alloc initwithidentifier :

16 NSToolbar *toolbar = [ [ [ NSToolbar alloc ] initwithidentifier ] autorelease ]; // ツールバーを作成 initwithidentifier : NSToolbar : - (id) initwithidentifier : (NSString *) identifier identifier : : NSToolbar toolbaritems addtoolbaritem addtoolbaritem NSToolbarItem toolbaritems addtoolbaritem // アイテム辞書作成 toolbaritems = [ [ NSMutableDictionary dictionary ] retain ]; // ツールバーアイテムを辞書 (toolbaritems) に登録 addtoolbaritem( 省略 ); // Font Style addtoolbaritem( 省略 ); // Font Size addtoolbaritem( 省略 ); // Blue Text setdelegate : setallowsusercustomization : NO YES setautosavesconfiguration : YES // ツールバーの属性をセット [ toolbar setdelegate : self ]; // デリゲートをセット [ toolbar setallowsusercustomization : YES ]; // 設定パレットを使う [ toolbar setautosavesconfiguration : YES ]; // 設定の自動保存をする [ toolbar setdisplaymode : NSToolbarDisplayModeIconOnly ]; // 表示モード設定 [ thewindow settoolbar : toolbar ]; // ツールバーをウィンドウにセット setdisplaymode :

17 NSToolbar : typedef enum { NSToolbarDisplayModeDefault, NSToolbarDisplayModeIconAndLabel, // Icon & Text NSToolbarDisplayModeIconOnly, // Icon Only NSToolbarDisplayModeLabelOnly // Text Only NSToolbarDisplayMode; settoolbar : settoolbar : setautosavesconfiguration : YES /Users/<USERNAME>/Library/ToolbarSample.plist <?xml version="1.0" encoding="utf-8"?> <!DOCTYPE plist SYSTEM "file://localhost/system/library/dtds/propertylist.dtd"> <plist version="0.9"> <dict> <key>nstoolbar Configuration mytoolbar</key> <dict> <key>tb Display Mode</key> <integer>1</integer> <key>tb Is Shown</key> <integer>1</integer> <key>tb Item Identifiers</key> <array> <string>fontstyle</string> <string>fontsize</string> <string>nstoolbarseparatoritem</string> <string>blueletter</string> <string>nstoolbarprintitem</string> </array> <key>tb Size Mode</key> <integer>1</integer> </dict> <key>nswindow Frame NSFontPanel</key> <string> </string> </dict> </plist>

18 addtoolbaritem addtoolbaritem Controller.m > addtoolbaritem static void addtoolbaritem ( NSMutableDictionary *thedict, // 登録先のツールバーアイテム辞書 NSString *identifier, // 識別子 NSString *label, // ラベル NSString *palettelabel, // パレットラベル NSString *tooltip, // ツールチップ id target, // イメージアイテム用のターゲット SEL settingselector, // ツールバーにセットする時のメソッド名 id itemcontent, // ツールバーにセットする画像かビュー SEL action, // イメージアイテム用のアクション NSMenu *menu // メニュー ) { thedict identifier tooltip target action itemcontent settingselector setimage : setview : menu addtoolbaritem

19 Controller.m > awakefromnib // Font StyleとFont Sizeを辞書に登録 ( ビューアイテム ) your font style", popupview, NULL, fontstylemenu ); addtoolbaritem( 省略 ); // Blue Textを辞書に追加 ( イメージアイテム ) toggles blue text on/off", [ NSImage imagenamed fontsizemenu ); addtoolbaritem

20 Controller.m > addtoolbaritem static void addtoolbaritem ( : 省略 ) { NSMenuItem *mitem; NSToolbarItem *item = [ [ [ NSToolbarItem alloc ] initwithitemidentifier : identifier ] autorelease ]; // ツールバーアイテム作成 [ item setlabel : label ]; // ラベルを設定 [ item setpalettelabel : palettelabel ]; // パレットラベルを設定 [ item settooltip : tooltip ]; // ツールチップを設定 [ item settarget : target ]; // ターゲットを設定 [ item performselector : settingselector withobject : itemcontent ]; // アイテムに画像かビューをセット [ item setaction : action ]; // アクションを設定 if ( menu!= NULL ) { // メニューを設定 mitem = [ [ [ NSMenuItem alloc ] init ] autorelease ]; [ mitem setsubmenu : menu ]; [ mitem settitle : [ menu title ] ]; [ item setmenuformrepresentation : mitem ]; [ thedict setobject : item forkey : identifier ]; // アイテム辞書に登録 alloc initwithitemidentifier : setxxx : performselector : withobject : [ item performselector : settingselector withobject : itemcontent ]; // アイテムに画像かビューをセット item settingselector itemcontent [ item setimage : itemcontent ];

21 [ item setview : itemcontent ]; setimage : setview : setmenuformrepresentation : NSMenuItem NSMenu NSMenuItem NSToolbarItem : - (NSString *) label : NSToolbarItem : - (void) setlabel : (NSString *) label label : NSToolbarItem : - (NSString *) palettelabel : NSToolbarItem : - (void) setpalettelabel : (NSString *) palettelabel palettelabel :

22 NSToolbarItem : - (NSString *) tooltip : NSToolbarItem : - (void) settooltip : (NSString *) tooltip tooltip : NSToolbarItem : - (id) target : NSToolbarItem : - (void) settarget : (id) target target : NSToolbarItem : - (SEL) action : NSToolbarItem : - (void) setaction : (SEL) action action :

23 NSToolbarItem : - (NSMenuItem *) menuformrepresentation : NSToolbarItem : - (void) semenuformrepresentation : (NSMenuItem *) menuitem menuitem : NSToolbarItem : - (NSImage *) image : NSToolbarItem : - (void) setimage : (NSImage *) image image : NSToolbarItem : - (NSView *) view : NSToolbarItem : - (void) setview : (NSView *) view image :

24 toolbar : itemforitemidentifier : willbeinsertedintotoolbar : Controller.m > toolbar : itemforitemidentifier : willbeinsertedintotoolbar : - (NSToolbarItem *) toolbar : (NSToolbar *) toolbar itemforitemidentifier : (NSString *) itemidentifier willbeinsertedintotoolbar : (BOOL ) flag { NSToolbarItem *newitem = [ [ [ NSToolbarItem alloc ] initwithitemidentifier : itemidentifier ] autorelease ]; // アイテムを作成 // アイテム辞書から取り出し NSToolbarItem *item = [ toolbaritems objectforkey : itemidentifier ]; // 以降でコピーする [ newitem setlabel : [ item label ] ]; // ラベルをコピー [ newitem setpalettelabel : [ item palettelabel ] ]; // パレットラベルをコピー // ビューと画像をコピー if ( [ item view ]!= NULL ) { [ newitem setview : [ item view ] ]; else { [ newitem setimage : [ item image ] ]; [ newitem settooltip : [ item tooltip ] ]; // ツールチップをコピー [ newitem settarget : [ item target ] ]; // ターゲットをコピー [ newitem setaction : [ item action ] ]; // アクションをコピー // メニューをコピー [ newitem setmenuformrepresentation : [ item menuformrepresentation ] ]; if ( [ newitem view ]!= NULL ) { // ビューアイテムならサイズを設定 [ newitem setminsize : [ [ item view ] bounds ].size ]; [ newitem setmaxsize : [ [ item view ] bounds ].size ]; return newitem;

25 - (NSToolbarItem *) toolbar : (NSToolbar *) toolbar itemforitemidentifier : (NSString *) itemidentifier willbeinsertedintotoolbar : (BOOL ) flag { return [ toolbaritems objectforkey : itemidentifier ]; setminsize : setmaxsize : NSToolbarItem : - (NSSize) maxsize :

26 NSToolbarItem : - (void) setmaxsize : (NSSize) size size : NSToolbarItem : - (NSSize) minsize : NSToolbarItem : - (void) setminsize : (NSSize) size size : Controller.m toolbarwilladditem : toolbar : itemforitemidentifier : willbeinsertedtoolbar : NSNotification userinfo item NSToolbarItem settooltip : settarget :

27 Controller.m > toolbarwilladditem - (void) toolbarwilladditem : (NSNotification *) notif { NSToolbarItem *addeditem = [ [ notif userinfo ] objectforkey ]; if ( [ [ addeditem itemidentifier ] isequal : NSToolbarPrintItemIdentifier ] ) { // Printの場合 [ addeditem settooltip your document" ]; // ツールチップ変更 [ addeditem settarget : self ]; // ターゲット変更 NSToolbarNotifications : - (void) toolbarwilladditem : (NSNotification *) notification notification : Controller.m > toolbardidremoveitem - (void) toolbardidremoveitem : (NSNotification *) notif { NSToolbarItem *removeditem = [ [ notif userinfo ] objectforkey ]; : removeditem に対する終了処理 NSToolbarNotifications : - (void) toolbardidremoveitem : (NSNotification *) notification notification : validatetoolbaritem :

28 Controller.m > validatetoolbaritem : - (BOOL) validatetoolbaritem : (NSToolbarItem *) theitem { // : %@", [ theitem label ] ); // 追加 return YES; // or NO YES NO NSLog NSToolbarItemValidation : - (BOOL) validatetoolbaritem : (NSToolbarItem *) theitem theitem: : = YES = NO validatemenuitem : Controller.m > validatemenuitem : - (BOOL) validatemenuitem : (NSMenuItem *) menuitem { if ( [ menuitem action ] changefontstyle : ) ) { if ( [ menuitem tag ] == fontstylepicked ) [ menuitem setstate : NSOnState ]; // チェックをつける return YES; // or NO

29 NSMenuValidation : - (BOOL) validatemenuitem : (id <NSMenuItem>) menuitem menuitem : : = YES = NO toggletoolbarshown : toggletoolbarshown :

30 runtoolbarcustomizationpalette :

31 awakefromnib Controller.m > awakefromnib // Blue Textを辞書に追加 ( イメージアイテム ) addtoolbaritem( NSLocalizedString( toggles blue text on/off", [ NSImage imagenamed fontsizemenu ); NSLocalizedString Localizable.strings Localizable.strings > Japanese "BlueLetter" = " 文字を青くする ";

32 toolbar : itemforitemidentifier : willbeinsertedintotoolbar :

33 if MyDocument.m > toolbar : itemforitemidentifier : willbeinsertedintotoolbar : - (NSToolbarItem *) toolbar : (NSToolbar *) toolbar itemforitemidentifier : (NSString *) itemident willbeinsertedintotoolbar : (BOOL ) flag { : 省略 if ( [ itemident isequal : SaveDocToolbarItemIdentifier ] ) { else if (... ) { else if (... ) { : 省略

Microsoft Word - MDOnline 2001.

Microsoft Word - MDOnline 2001. - 1 - - 2 - #pragma mark LABELNAME mark #pragma mark SETTITLE - 3 - - 4 - - 5 - NSApplication requestuserattention : NSApplication : - (int) requestuserattention : (NSRequestUserAttentionType) reqtype

More information

TextSystemOverview

TextSystemOverview テキストシステム アーキテクチャー ソフトウエア設計者にとって アプリケーションにおけるテキストの取り扱いという問題は 最も頭を悩ま せる要素です 最も 基本的な テキストシステムでも 入力 レイアウト 表示 編 集 コピー ペースト これらはサポートされていて当たり前です そのうえ最近は 単なるエ ディタ ワードプロセッサではなく でさえ複数のフォントやパラグラフ スタイル イメージの貼付に スペル

More information

ARC Automatic Reference Counting clang 新しいコンパイラ LLVMプロジェクト (http://llvm.org/) のコンパイラ C Objective-C C++ の効率的なコードを生成 オプションなどは gcc とほぼ共通 Apple社独自の拡張機能を実現 ARC ブロックオブジェクトなど ARCを利用するには clang が必須 コンパイルオプションに

More information

1/5 ページ 日記検索ブログトップ記事一覧ログイン無料ブログ開設 fn7の日記 プロフィール 2010-02-03 Objective-C 最速基礎文法マスター Java 基礎文法最速マスター - 何かしらの言語による記述を解析する日記を参考に Objective-Cのものを書いてみた

More information

カメラ操作のプログラミング(iOS用)について (TP )

カメラ操作のプログラミング(iOS用)について (TP ) カメラ操作の プログラミング (ios 用 ) 目次 カメラとフォトライブラリについて 4 この書類の構成 5 写真とムービーの撮影 6 カメラインターフェイスの作成と設定 7 カメラインターフェイス用のデリゲートの実装 10 フォトライブラリからのアイテムの選択 13 メディアブラウザの作成と設定 13 メディアブラウザ用のデリゲートの実装 16 書類の改訂履歴 19 2 図 リスト 写真とムービーの撮影

More information

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i

NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (i 2002.7.30 ( 1 st Edition ) - 1 - NSDate NSCalendarDate NSObject NSDate NSCalendarDate NSDate NSCalendarDate NSDate NSCalendar NSDate date NSDate *d = [ NSDate date ]; // NSDate : + (id) date : init date

More information

UI コントロール機能一覧通常の記録機能でコントロールが Unknown と記録された場合 UI コントロールをご使用頂くと動作可能となります 命令や例を参考に 行いたい操作に合う UI コントロール機能をご使用ください また 行いたい操作が一覧にない場合は お問い合わせください 注意 通常の記録機

UI コントロール機能一覧通常の記録機能でコントロールが Unknown と記録された場合 UI コントロールをご使用頂くと動作可能となります 命令や例を参考に 行いたい操作に合う UI コントロール機能をご使用ください また 行いたい操作が一覧にない場合は お問い合わせください 注意 通常の記録機 UI コントロール機能一覧通常の記録機能でコントロールが Unknown と記録された場合 UI コントロールをご使用頂くと動作可能となります 命令や例を参考に 行いたい操作に合う UI コントロール機能をご使用ください また 行いたい操作が一覧にない場合は お問い合わせください 注意 通常の記録機能で取得できるコントロールに UI コントロールを使用しないでください 誤動作や機能停止の原因となります

More information

piyo0704b.rtfd

piyo0704b.rtfd ウィンドウ内に収まらなくなると 右および下に スクロールバーが現われます 51 Text 部品と Scrollbar 1 Text 部品と Scrollbar とを組み合わせて利用すると便利です root = Tk(); root.title("text with: Scrollbar") root.config(width=150, height=80) frame = Frame(root) frame.pack(fill=both,

More information

ボタンイベントアプリイベント処理を含むアプリとして, ボタンをもち, ボタンを押すと文字列を表示するアプリを作る. このアプリは,HelloWorld アプリを改造して作成するため, アプリ作成の途中からの手順を示す. 1. ボタンの設置 (1) レイアウトにボタンを追加するパレットの フォーム ウ

ボタンイベントアプリイベント処理を含むアプリとして, ボタンをもち, ボタンを押すと文字列を表示するアプリを作る. このアプリは,HelloWorld アプリを改造して作成するため, アプリ作成の途中からの手順を示す. 1. ボタンの設置 (1) レイアウトにボタンを追加するパレットの フォーム ウ ボタンイベントアプリイベント処理を含むアプリとして, ボタンをもち, ボタンを押すと文字列を表示するアプリを作る. このアプリは,HelloWorld アプリを改造して作成するため, アプリ作成の途中からの手順を示す. 1. ボタンの設置 (1) レイアウトにボタンを追加するパレットの フォーム ウィジェット からボタンのアイコンをドラッグして, ワークスペースにドロップする. 図 1 ボタンの追加

More information

ファイルを直接編集する画面を切り替えることができる. 図 3 標準のレイアウトを削除する (2) グラフィカル レイアウト画面で LinearLayout(Vertical) を追加するパレットウィンドウの レイアウト の中にある LinearLayout(Vertical) をドラッグして, 編集

ファイルを直接編集する画面を切り替えることができる. 図 3 標準のレイアウトを削除する (2) グラフィカル レイアウト画面で LinearLayout(Vertical) を追加するパレットウィンドウの レイアウト の中にある LinearLayout(Vertical) をドラッグして, 編集 BMI 計算アプリ身長と体重をユーザが入力し, その値を計算して,BMI 値を表示するアプリケーションを作る. 1. プロジェクトを作る新規 Android アプリケーション プロジェクトを作る.HelloWorld アプリケーションをつくるときと同じで良いが, アプリケーション名, プロジェクト名, パッケージ名は以下のように設定する. 図 1 新規アプリケーションの設定をする 2. レイアウトを設定する

More information

Publication Finder( 出版物検索インターフェイス ) の設定 1.Customize Services Branding をクリックして下さい 2. 画面が下図のものに切り替わります この画面の設定が実際のインターフェイスに反映されます General Settings: 基本設定

Publication Finder( 出版物検索インターフェイス ) の設定 1.Customize Services Branding をクリックして下さい 2. 画面が下図のものに切り替わります この画面の設定が実際のインターフェイスに反映されます General Settings: 基本設定 EBSCO Admin では ご契約の出版物検索ツール Publication Finder (PF) およびリンクリゾルバ Full Text Finder(FTF) のインターフェイスを好みのカラーリングや文言でカスタマイズし 利用者にとって使い勝手の良い環境を お客様ご自身で設定して頂くことが可能です Publication Finder( 出版物検索インターフェイス ) の設定 Full Text

More information

) CoreImage 2013/5/25 iphone

) CoreImage 2013/5/25 iphone ) CoreImage 2013/5/25 iphone DJ / : takatronix Facebook/Twitter/Skype/LINE/Weibo -> takatronix http://takatronix.com LEGO FX SEXY SCAN... (SexyMirror)2013/1 iphone ios API UIImagePickerController UI AVFoundation.framework

More information

mazec テクニカルガイド第5版(Android版)

mazec テクニカルガイド第5版(Android版) 法人向け mazec テクニカルガイド 外部アプリケーション連携 ( Android 版 ) 第 6 版 Android は Google Inc. の登録商標です その他記載された会社名 製品名等は 各社の登録商標もしくは商標 または弊社の商標です 本書は株式会社 MetaMoJi が作成したものであり マニュアルの著作権は 株式会社 MetaMoJi に帰属します 本書の内容は予告なく変更することがあります

More information

Java言語 第1回

Java言語 第1回 Java 言語 第 11 回ウインドウ型アプリケーション (2) 知的情報システム工学科 久保川淳司 kubokawa@me.it-hiroshima.ac.jp メニュー (1) メニューを組み込むときには,MenuBar オブジェクトに Menu オブジェクトを登録し, その Menu オブジェクトに MenuItem オブジェクトを登録する 2 つの Menu オブジェクト File New

More information

GUIプログラムⅣ

GUIプログラムⅣ GUI プログラム Ⅳ 画像指定ウィンドウの生成 ファイル名 :awtimage.java import java.awt.*; import java.awt.event.*; public class awtimage extends Frame // コンポーネントクラスの宣言 Button btnbrowse; Label lblcaption7; TextField txtimage; //

More information

Lecture 2 Slides (January 7, 2010)

Lecture 2 Slides (January 7, 2010) CS193P - Lecture 2 iphone Application Development Objective-C Foundation Framework 1 Announcements Enrollment process is almost done Shooting for end of day Friday Please drop the class in Axess if you

More information

ラベルを管理するクラス Label ラベルはクラス Label により管理され 各種設定を行うメソッドが準備されています ラベルの生成 new Label("1. 通常のラベルです "); ラベルのサイズ setprefsize(200,100); ラベル文字が 1. 通常のラベルです で横 200

ラベルを管理するクラス Label ラベルはクラス Label により管理され 各種設定を行うメソッドが準備されています ラベルの生成 new Label(1. 通常のラベルです ); ラベルのサイズ setprefsize(200,100); ラベル文字が 1. 通常のラベルです で横 200 HCI プログラミング 6 回目いろいろなラベルを作ってみよう 今日の講義で学ぶ内容 ラベルの表示 ツールチップの表示 マウスカーソルの変更 ラベルの表示 1 ラベルを表示してみましょう ラベルはクラス Label により管理されます ソースファイル名 :Sample6_1.java // ラベルの表示 public class Sample6_1 extends Application Label[]

More information

VB.NETコーディング標準

VB.NETコーディング標準 (C) Copyright 2002 Java ( ) VB.NET C# AS-IS extremeprogramming-jp@objectclub.esm.co.jp bata@gold.ocn.ne.jp Copyright (c) 2000,2001 Eiwa System Management, Inc. Object Club Kenji Hiranabe02/09/26 Copyright

More information

Blue Asterisk template

Blue Asterisk template IBM Content Analyzer V8.4.2 TEXT MINER の新機能 大和ソフトウェア開発 2008 IBM Corporation 目次 UI カスタマイズ機能 検索条件の共有 柔軟な検索条件の設定 2 UI カスタマイズ機能 アプリケーションをカスタマイズするために Java Script ファイルおよびカスケーディングスタイルシート (CSS) ファイルの読み込み機能が提供されています

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版  

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

intra-mart Accel Platform — IM-Repository拡張プログラミングガイド   初版  

intra-mart Accel Platform — IM-Repository拡張プログラミングガイド   初版   Copyright 2018 NTT DATA INTRAMART CORPORATION 1 Top 目次 1. 改訂情報 2. はじめに 2.1. 本書の目的 2.2. 対象読者 2.3. サンプルコードについて 2.4. 本書の構成 3. 辞書項目 API 3.1. 最新バージョン 3.1.1. 最新バージョンの辞書を取得する 3.2. 辞書項目 3.2.1. 辞書項目を取得する 3.2.2.

More information

210-0004 TEL 200-3298,3300 FAX 222-1442 14 ( ) 14 ( ) 7 ( ) 16 ( ) 16 ( ) 23 ( ) (%) 1 ( ) 1 ( ) 2 ( ) 7 ( ) 7 ( ) 22 ( ) 8 ( ) 22 ( ) 30 ( ) or 31( )

210-0004 TEL 200-3298,3300 FAX 222-1442 14 ( ) 14 ( ) 7 ( ) 16 ( ) 16 ( ) 23 ( ) (%) 1 ( ) 1 ( ) 2 ( ) 7 ( ) 7 ( ) 22 ( ) 8 ( ) 22 ( ) 30 ( ) or 31( ) 210-0004 TEL 200-3298,3300 FAX 222-1442 10:00 14:00 210-0004 TEL 200-3298,3300 FAX 222-1442 14 ( ) 14 ( ) 7 ( ) 16 ( ) 16 ( ) 23 ( ) (%) 1 ( ) 1 ( ) 2 ( ) 7 ( ) 7 ( ) 22 ( ) 8 ( ) 22 ( ) 30 ( ) or 31(

More information

Network Computing の基礎

Network Computing の基礎 CSS Cascading Style Sheets Cascading = Style Sheets = CSS WEB HTML CSS 2 HTML h1 p CSS 3 CSS CSS HTML sample1.html CSS HTML sample2.html CSS CSS sample2.css CSS

More information

JavaScriptCore

JavaScriptCore http://kishikawakatsumi.com Twitter @k_katsumi 24/7 twenty-four seven http://d.hatena.ne.jp/kishikawakatsumi/ JSContext *context = [[JSContext alloc] init]; JSValue *result = [context evaluatescript:@"2

More information

Condition DAQ condition condition 2 3 XML key value

Condition DAQ condition condition 2 3 XML key value Condition DAQ condition 2009 6 10 2009 7 2 2009 7 3 2010 8 3 1 2 2 condition 2 3 XML key value 3 4 4 4.1............................. 5 4.2...................... 5 5 6 6 Makefile 7 7 9 7.1 Condition.h.............................

More information

Table of Contents 1. ページに透かしを入れる 各ページに透かしを入れるには 段落に対して透かしを入れるには クレジット ライセンス

Table of Contents 1. ページに透かしを入れる 各ページに透かしを入れるには 段落に対して透かしを入れるには クレジット ライセンス 透かし (WaterMarks) の入れ方 Distributed by The OpenOffice.org Documentation Project 翻訳 OpenOffice.org ja Project 翻訳班 Table of Contents 1. ページに透かしを入れる... 3 2. 各ページに透かしを入れるには... 5 3. 段落に対して透かしを入れるには... 6 4. クレジット...

More information

Q&A集

Q&A集 MapViewer & ver.2 EWEB-3C-N055 PreSerV for Web MapViewer & i 1... 1 1.1... 1 1.2... 2 1.3... 3 1.4... 4 1.5... 5 1.6... 6 1.7... 7 1.8... 8 1.9... 9 1.10...11 1.11...12 1.12...13 1.13...14 1.14...15 1.15...16

More information

Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem

Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem Java Object MenuComponent MenuBar MenuItem Menu CheckboxMenuItem 2 MenuComponent MenuComponent setfont() void setfont(font f) MenuBar MenuBar MenuBar() MenuBar add() Menu add(menu m) Menu Menu Menu String

More information

1: Preference Display 1 package sample. pref ; 2 3 import android. app. Activity ; 4 import android. content. Intent ; 5 import android. content. Shar

1: Preference Display 1 package sample. pref ; 2 3 import android. app. Activity ; 4 import android. content. Intent ; 5 import android. content. Shar Android 2 1 (Activity) (layout strings.xml) XML Activity (Intent manifest) Android Eclipse XML Preference, DataBase, File 3 2 Preference Preference Preference URL:[http://www.aichi-pu.ac.jp/ist/lab/yamamoto/android/android-tutorial/tutorial02/tutorial02.pdf]

More information

Taro-korattsu.jtd

Taro-korattsu.jtd ------------------------------------------------------------------------ No29 数字 ( テキスト ) を入力して計算方法 3x+1の問題 ( コラッツの問題 ) Ver2 Copyright( C) K.Niwa 2014.08.10 ------------------------------------------------------------------------

More information

Microsoft PowerPoint - uniCMS操作マニュアル.ppt

Microsoft PowerPoint - uniCMS操作マニュアル.ppt -1- -2- -3- -4- -5- -6- [ ] -7- [ ] -8- [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- -21- ( ) -22- -23- -24- -25- -26- -27- -28- -29- -30- -31- menu menu -32- -33- -34-

More information

untitled

untitled -1- menu -2- -3- -4- -5- -6- [ ] -7- [ ] -8- 0 [ ] [ ] 1 0 [ ] -9- [ ] -10- -11- -12- -13- -14- -15- -16- -17- -18- -19- -20- ( ) -21- -22- -23- -24- -25- -26- -27- -28- -29- menu menu -30- -31- -32- -33-

More information

fp.gby

fp.gby 1 1 2 2 3 2 4 5 6 7 8 9 10 11 Haskell 12 13 Haskell 14 15 ( ) 16 ) 30 17 static 18 (IORef) 19 20 OK NG 21 Haskell (+) :: Num a => a -> a -> a sort :: Ord a => [a] -> [a] delete :: Eq a => a -> [a] -> [a]

More information

Java演習(4) -- 変数と型 --

Java演習(4)   -- 変数と型 -- 50 20 20 5 (20, 20) O 50 100 150 200 250 300 350 x (reserved 50 100 y 50 20 20 5 (20, 20) (1)(Blocks1.java) import javax.swing.japplet; import java.awt.graphics; (reserved public class Blocks1 extends

More information

r07.dvi

r07.dvi 19 7 ( ) 2019.4.20 1 1.1 (data structure ( (dynamic data structure 1 malloc C free C (garbage collection GC C GC(conservative GC 2 1.2 data next p 3 5 7 9 p 3 5 7 9 p 3 5 7 9 1 1: (single linked list 1

More information

ohp07.dvi

ohp07.dvi 19 7 ( ) 2019.4.20 1 (data structure) ( ) (dynamic data structure) 1 malloc C free 1 (static data structure) 2 (2) C (garbage collection GC) C GC(conservative GC) 2 2 conservative GC 3 data next p 3 5

More information

TestDesign for Web

TestDesign for Web 発行日 2012/6/21 発行元 株式会社アープ 本書は Web でのテスト自動化における Test Design の一連の操作方法まとめたものです Test Design のメニューの説明やより詳細な使い方については ユーザーズガイド を参照してください 目次 1. はじめに... 1 2. 環境構築... 2 2.1. Selenium のサイトについて... 2 2.2. Selenium

More information

MyEventHandler actionhandler = new MyEventHandler(); m.addeventhandler(actionevent.any, actionhandler); // レイアウト BorderPane を生成 / 設定します BorderPane bp

MyEventHandler actionhandler = new MyEventHandler(); m.addeventhandler(actionevent.any, actionhandler); // レイアウト BorderPane を生成 / 設定します BorderPane bp HCI プログラミング 9 回目メニューとポップアップメニュー 今日の講義で学ぶ内容 メニューの利用 メニューのカスタマイズ ポップアップメニュー メニューの利用 1 メニューを配置してみましょう メニューを用いることにより 欲しい機能をすばやく呼び出すことができます ソースファイル名 :Sample9_1.java // HP よりインポート文をここへ貼り付けてください // メニューの配置 public

More information

lifedesign_contest_No3

lifedesign_contest_No3 1 3 5 Apple Developer Program 5 AWS 8 Raspberry Pi 14 18 19 { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sns:createplatformendpoint" ], "Resource": [ ] ] #

More information

注意 : ネットワークカメラの画像を回転させて表示した場合 モーション検知ウインドウは回転しないまま表示されますが 検知ウインドウは被写体に対して 指定した場所通りに動作します モーション検知ウインドウの縦横のサイズは 8 ピクセルで割り切れるサイズに自動調整されます モーション検知ウインドウを作成

注意 : ネットワークカメラの画像を回転させて表示した場合 モーション検知ウインドウは回転しないまま表示されますが 検知ウインドウは被写体に対して 指定した場所通りに動作します モーション検知ウインドウの縦横のサイズは 8 ピクセルで割り切れるサイズに自動調整されます モーション検知ウインドウを作成 はじめに 本ドキュメントでは AXIS ネットワークカメラ / ビデオエンコーダのファームウエアバージョン 5.4x 以降で 動体検知があった際にメールを任意のアドレスに送信するための設定手順を説明します 設定手順手順 1:AXIS ネットワークカメラ / ビデオエンコーダの設定ページにアクセスする 1. Internet Explorer などの Web ブラウザを起動します 2. Web ブラウザの

More information

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui

Objective-C Objective-C C Toolbox API Cocoa Objective-C Java Carbon API C API Objective-C Java Pure Java Java AppleScript Java Objective-C Project Bui AppleScript Studio AppleScript AppleScript Stduio Objective-C Cocoa Cocoa Objective-C Java AppleScript AppleScript Studio Application Suite call method call method [of class ] [of object ] [with parameter

More information

MENU 키를 누르면 아래의 화면이 나타납니다

MENU 키를 누르면 아래의 화면이 나타납니다 Stand-Alone Digital Video Recorder Advanced MPEG-4 DVR 16 Channel Models クライアントソフト 再インストールマニュアル くまざわ書店専用 日本語版 1 V1.07-n307 This document contains preliminary information and subject to change without notice.

More information

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0

Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 Oracle JDeveloper 10g ADF Creation Date: Jul 07, 2004 Last Update: Jul 08, 2004 Version 1.0 ... 1... 2... 3... 5... 6... 6... 9... 9 Vector... 10 Struts... 12... 14 cart.jsp 1... 15 cart.jsp 2... 17 JSP...

More information

1 2 3 4

1 2 3 4 LC-32GH1 LC-32GH2 1 2 3 4 5 4 6 7 8 9 10 11 1 2 3 4444444444 4444444 444444444 OIL BAR BAR CLINIC CLINIC 1 2 1 2 1 2 3 4 1 2 1 2 See page 44 if you wish to display menu screens

More information

AirPrintPublic

AirPrintPublic Printing on ios 4.2 Yutaka Yasuda, Kyoto Sangyo University AirPrint iphone / ipad Safari ios 4.2 2011 3 HP eprint ASCII.jp x MacPeople OS X AirPrint -- Apple Geeks 19 http://ascii.jp/elem/000/000/575/575397/

More information

1 138

1 138 5 1 2 3 4 5 6 7 8 1 138 BIOS Setup Utility MainAdvancedSecurityPowerExit Setup Warning Item Specific Help Setting items on this menu to incorrect values may cause your system to malfunction. Select 'Yes'

More information

Microsoft PowerPoint - CSS(Cascading Style Sheets)の基本.pptx

Microsoft PowerPoint - CSS(Cascading Style Sheets)の基本.pptx CSS(Cascading Style Sheets) の基本 1. CSSの基本的な考え方は HTMLの構造を表す要素 ( タグ ) に対しスタイルを定義するというもの 2. CSSでは セレクタ プロパティ 値 の3つを組み合わせてスタイルを設定する 3. セレクタ は ,, や 要素などコンテンツ内のどの要素にスタイルを適用するかを指定する 4. セレクタの次の

More information

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt

Microsoft PowerPoint - 201409_秀英体の取組み素材(予稿集).ppt 1 2 3 4 5 6 7 8 9 10 11 No Image No Image 12 13 14 15 16 17 18 19 20 21 22 23 No Image No Image No Image No Image 24 No Image No Image No Image No Image 25 No Image No Image No Image No Image 26 27 28

More information

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac

Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN Exam's Question and Answers 1 from Ac Actual4Test http://www.actual4test.com Actual4test - actual test exam dumps-pass for IT exams Exam : 1z1-809-JPN Title : Java SE 8 Programmer II Vendor : Oracle Version : DEMO Get Latest & Valid 1z1-809-JPN

More information

(Java/FX ) Java CD Java version Java VC++ Python Ruby Java Java Eclipse Java Java 3 Java for Everyone 2 10 Java Midi Java JavaFX Shape Canvas C

(Java/FX ) Java CD Java version Java VC++ Python Ruby Java Java Eclipse Java Java 3 Java for Everyone 2 10 Java Midi Java JavaFX Shape Canvas C (Java/FX ) Java CD Java version 10.0.1 Java VC++ Python Ruby Java Java Eclipse Java Java 3 Java for Everyone 2 10 Java Midi Java JavaFX Shape Canvas Canvas Eclipse Eclipse M... 1 javafx e(fx)clipse 3.0.0

More information

1 142

1 142 7 1 2 3 4 5 6 7 8 1 142 PhoenixBIOS Setup Utility MainSystem DevicesSecurityPowerOthersBootExit System Time: [XX:XX:XX] Item Specific Help System Date: [XX/XX/XXXX] Floppy Drive: 1.44MB, 3 1 / 2" Hard

More information

ProVisionaire Control V3.0セットアップガイド

ProVisionaire Control V3.0セットアップガイド ProVisionaire Control V3 1 Manual Development Group 2018 Yamaha Corporation JA 2 3 4 5 NOTE 6 7 8 9 q w e r t r t y u y q w u e 10 3. NOTE 1. 2. 11 4. NOTE 5. Tips 12 2. 1. 13 3. 4. Tips 14 5. 1. 2. 3.

More information

Copyright 2002-2003 SATO International All rights reserved. http://www.satoworldwide.com/ This software is based in part on the work of the Independen

Copyright 2002-2003 SATO International All rights reserved. http://www.satoworldwide.com/ This software is based in part on the work of the Independen SATO Label Gallery SATO International Pte Ltd Version : BSI-021227-01 Copyright 2002-2003 SATO International All rights reserved. http://www.satoworldwide.com/ This software is based in part on the work

More information

とても使いやすい Boost の serialization

とても使いやすい Boost の serialization とても使いやすい Boost の serialization Zegrahm シリアライズ ( 直列化 ) シリアライズ ( 直列化 ) とは何か? オブジェクトデータをバイト列や XML フォーマットに変換すること もう少しわかりやすく表現すると オブジェクトの状態を表す変数 ( フィールド ) とオブジェクトの種類を表す何らかの識別子をファイル化出来るようなバイト列 XML フォーマット形式で書き出す事を言う

More information

EnSight 10.1の新機能

EnSight 10.1の新機能 EnSight の処理の自動化のためのテクニックのご紹介 CEI ソフトウェア株式会社 松野康幸 2016 年 11 月 4 日 本日の予定 EnSight の処理の自動化に向けて EnSight のコマンドでできること EnSight で利用できるコマンドの種類 コマンド ファイルの作り方 Python 形式のコマンドの作り方作成したコマンド ファイルの実行方法ユーザー定義ツールの作り方ユーザー定義ツールの使い方

More information

1 15 7 4 7 7 2 3 4 5 35.0% 9.8% 1 44.8% 33.8% 21.4% 55.2% 40 53.3% 20 74.0% 38.4% 17.2% 55.6% 31.6% 12.8% 44.4% 61.2% 31.8% 2.8% 0.4% 63.2% 34.0% 2.8% 57.8% 27.6% 85.4% 14.0% 0.6% 14.6% 40.6% 13.4% 11.0%

More information

public class MyFrame { private JPanel panel1; private JPanel panel2; private JPanel panel3; private JPanel panel4; private JLabel label1; private JTex

public class MyFrame { private JPanel panel1; private JPanel panel2; private JPanel panel3; private JPanel panel4; private JLabel label1; private JTex ソフトウェア基礎演習課題 20061206 以下のような GUI 画面を表示するプログラムを完成させなさい 前回演習で作成したプログラムにイベント処理を追加します 注意 : ファイル名が同じものがあるので 課題毎にディレクトリーを分ける等してください ( 簡易レジスター ) 概略仕様 : 1. フレーム内にはパネルが4つあり レイアウトは GridLayout(4, 1)(4 行 1 列のレイアウト

More information

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None

intra-mart Accel Platform — イベントナビゲータ 開発ガイド   初版   None クイック検索検索 目次 Copyright 2013 NTT DATA INTRAMART CORPORATION 1 Top 目次 intra-mart Accel Platform イベントナビゲータ開発ガイド初版 2013-07-01 None 改訂情報概要イベントフローの作成 更新 削除をハンドリングするイベントフローを非表示にする回答を非表示にするリンクを非表示にするタイトル コメントを動的に変更するリンク情報を動的に変更するナビゲート結果のリンクにステータスを表示する

More information

インターネットマガジン1995年8月号―INTERNET magazine No.7

インターネットマガジン1995年8月号―INTERNET magazine No.7 064 INTERNET MAGAZINE 1995/8 Copyright 1995 Netscape Communications Corporation INTERNET MAGAZINE 1995/8 065 point 2 point 7 point 6 point 3 point 5 point 4 point 1 066 INTERNET MAGAZINE 1995/8 1 2 3 4

More information

橡Taro9-生徒の活動.PDF

橡Taro9-生徒の活動.PDF 3 1 4 1 20 30 2 2 3-1- 1 2-2- -3- 18 1200 1 4-4- -5- 15 5 25 5-6- 1 4 2 1 10 20 2 3-7- 1 2 3 150 431 338-8- 2 3 100 4 5 6 7 1-9- 1291-10 - -11 - 10 1 35 2 3 1866 68 4 1871 1873 5 6-12 - 1 2 3 4 1 4-13

More information

超簡単にWebページを作成

超簡単にWebページを作成 Lesson を始める前に どんなプログラマーもこれを実践しました 超簡単に Web ページを作成 この解説書は Lesson が高レベルになっても参照用として利用して下さい この章の実践方法はまず解説ページ内にある HTML ソースコードをコピーして メモ帳などに貼り付けて 実行して 表示してそのあとで表示内容を解説します 最初は全然理解できない方でも 同じ HTML コードを繰り返し 繰り返 し実践する事で

More information

intra-mart マスカット連携ガイド

intra-mart マスカット連携ガイド intra-mart マスカット連携ガイド Version 6.1 第三版 2008 年 1 月 31 日 > 変更年月日変更内容 2007/7/31 初版 2007/8/31 第二版以下の説明を追加 3.1.2.2 初期表示時のアクション 3.2.2.2 初期表示時のアクション 2008/1/31 第三版 3.3 デバック を追加 目次 > 1 はじめに...3

More information

G00000001.mcd

G00000001.mcd Member of JSCE JSCE Corp Key Words= MS- Word, style, template, Autolayout, MCB2 a E mail E mail b mm mm mm mm A mm pt mm pt mm pt E mail pt mm pt Times Italic pt 'Key Words' mm 1 mm mm pt a CD z pt? 2

More information

untitled

untitled DSpace 1 1 DSpace HOME...4 1.1 DSpace is Live...4 1.2 Search...4 1.3 Communities in DSpace...6 1.4...6 1.4.1 Browse...7 1.4.2 Sign on to...14 1.4.3 Help...16 1.4.4 About DSpace...16 2 My DSpace...17 2.1

More information

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル

HA8000シリーズ ユーザーズガイド ~BIOS編~ HA8000/RS110/TS10 2013年6月~モデル P1E1M01500-3 - - - LSI MegaRAID SAS-MFI BIOS Version x.xx.xx (Build xxxx xx, xxxx) Copyright (c) xxxx LSI Corporation HA -0 (Bus xx Dev

More information

3 top#index 1 web router.ex web/router.ex 12 scope "/", NanoPlanner do 13 pipe_through browser get "/", TopController, index 16 end URL / to

3 top#index 1 web router.ex web/router.ex 12 scope /, NanoPlanner do 13 pipe_through browser get /, TopController, index 16 end URL / to 3 NanoPlanner SASS Bootstrap Font Awesome 3.1 RAVT 6 RAVT route action view template Phoenix top index top index top#index RAVT URL / top#index top#index top 23 3 top#index 1 web router.ex web/router.ex

More information

NSBitmapImageRep NSBitmapImageRep *brep = ; int inumframe = [ [ brep valueforproperty : NSImageFrameCount ] intvalue ]; NSBitmapImageRep valueforprope

NSBitmapImageRep NSBitmapImageRep *brep = ; int inumframe = [ [ brep valueforproperty : NSImageFrameCount ] intvalue ]; NSBitmapImageRep valueforprope 2002.10.12 ( 4th Edition ) 2002.09.07 : 1st 2002.09.09 : 2nd 2002.09.14 : 3rd 2002.10.12 : 4th - 1 - NSBitmapImageRep NSBitmapImageRep *brep = ; int inumframe = [ [ brep valueforproperty : NSImageFrameCount

More information

# let st1 = {name = "Taro Yamada"; id = };; val st1 : student = {name="taro Yamada"; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n

# let st1 = {name = Taro Yamada; id = };; val st1 : student = {name=taro Yamada; id=123456} { 1 = 1 ;...; n = n } # let string_of_student {n II 6 / : 2001 11 21 (OCaml ) 1 (field) name id type # type student = {name : string; id : int};; type student = { name : string; id : int; } student {} type = { 1 : 1 ;...; n : n } { 1 = 1 ;...; n = n

More information

人工知能入門

人工知能入門 藤田悟 黄潤和 探索とは 探索問題 探索解の性質 探索空間の構造 探索木 探索グラフ 探索順序 深さ優先探索 幅優先探索 探索プログラムの作成 バックトラック 深さ優先探索 幅優先探索 n 個の ueen を n n のマスの中に 縦横斜めに重ならないように配置する 簡単化のために 4-ueen を考える 正解 全状態の探索プログラム 全ての最終状態を生成した後に 最終状態が解であるかどうかを判定する

More information

Assignment9_1.java

Assignment9_1.java Assignment9_1.java 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

More information

Microsoft PowerPoint - OOP.pptx

Microsoft PowerPoint - OOP.pptx 第 5 回 第 3 章継承 91 継承 ( インヘリタンス ): ウインドウシステムを例に説明 図 3.1: ウインドウの中にラベル, ボタン, リストの部品 各部品の属性と操作共通の属性と操作 ウインドウ内の左上を原点として (x, y) で場所指定 : 属性 (width, height) でサイズ指定 : 属性 識別のための名前 (name): 属性 置く位置の指定 (setlocation,

More information

( さん)( さん)( さん)( さん)( さん)( さん)( さん)( さん)ラベル り( さん)( さん)( さん)( さん)( さん) ( さん)( さん)( さん)( さん)( さん)( さん)( さん)( さん)ラベル り( さん)( さん)( さん)( さん)( さん) ( さん)( さん)( さん)( さん)( さん)( さん)( さん)( さん)ラベル り( さん)( さん)( さん)(

More information

SURE: Shizuoka University REp http://ir.lib.shizuoka.ac.jp/ Title 交 易 の 時 代 の 港 市 国 家 マラッカ : 空 間 軸 と 時 間 軸 か ら 考 える Author(s) 岩 井, 淳 Citation アジア 研 究. 6, p. 19-32 Issue Date 2011-03 URL http://doi.org/10.14945/00006821

More information

目 次 Java GUI 3 1 概要 クラス構成 ソースコード例 課題...7 i

目 次 Java GUI 3 1 概要 クラス構成 ソースコード例 課題...7 i Java GUI 3 Java GUI 3 - サンプルプログラム (1) - 2011-09-25 Version 1.00 K. Yanai 目 次 Java GUI 3 1 概要...1 2 クラス構成...2 3 ソースコード例...3 4 課題...7 i 1 概要まずは簡単なサンプルプログラムをみながら Java GUI の基本的なことを学びましょう 本サンプルは 図に示すようなひとつのメイン画面を使用します

More information

PYTHON 資料 電脳梁山泊烏賊塾 PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す PYTHON3 #coding: utf-8 import pygame from pygame.lo

PYTHON 資料 電脳梁山泊烏賊塾 PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す PYTHON3 #coding: utf-8 import pygame from pygame.lo PYTHON 入門 ゲームプログラミング スプライトの衝突判定 スプライトの衝突判定 スプライトの衝突判定の例として インベーダーゲームのコードを 下記に示す #coding: utf-8 import pygame from pygame.locals import * import os import sys SCR_RECT = Rect(0, 0, 640, 480) def main():

More information

<4D F736F F D20694F538F5A91EE A20838A C >

<4D F736F F D20694F538F5A91EE A20838A C > ios 住宅 API ライブラリ リファレンス Version 1.0 更新履歴 版改版年月日 発行改版内容 1.0 2015/2/5 新規作成 目次 1. はじめに... 1 2. ライブラリ基本情報... 1 2.1. 動作環境... 1 2.2. ライセンス... 2 3. ライブラリの利用方法... 3 3.1. ライブラリの利用方法... 3 4. リファレンス... 5 4.1. コマンドを生成する...

More information

2 下記は電子メールのサンプルです 閲覧 / 署名手順 合意書を閲覧するには [Review Document( 文書の表示 )] ボタンをクリックしてください DocuSign 電子署名プラットフォームに移動し [Continue( 続行 )] ボタンをクリックすると 合意書の閲覧ができます

2 下記は電子メールのサンプルです 閲覧 / 署名手順 合意書を閲覧するには [Review Document( 文書の表示 )] ボタンをクリックしてください DocuSign 電子署名プラットフォームに移動し [Continue( 続行 )] ボタンをクリックすると 合意書の閲覧ができます 1 DocuSign による Springer ライセンス契約 カスタマーマニュアル 目次ステップ バイ ステップガイド ステップ バイ ステップガイド :DocuSign 電子署名プラットフォームでの合意書の転送と署名... 1 このセクションでは DocuSign を用いた電子署名について説明します ステップ バイ ステップガイド :DocuSign 電子署名プラットフォームでの追加オプション...

More information

WP_8021X Authentication_21MAY2012

WP_8021X Authentication_21MAY2012 OS X 10.7.3 ios 5.1 2012 6 5 ...3 Apple...7...10...17 A...18 B...25 C Active Directory...32 LAN LAN RSA EAP Extensible Authentication Protocol Kerberos EAP EAPoL EAP over LAN EAP RADIUS Remote Authentication

More information

Microsoft Word - sample_adv-programming.docx

Microsoft Word - sample_adv-programming.docx サンプル問題 以下のサンプル問題は包括的ではなく 必ずしも試験を構成するすべての種類の問題を表すとは限りません 問題は 個人が認定試験を受ける準備ができているかどうかを評価するためのものではありません SAS Advanced Programming for SAS 9 問題 1 次の SAS データセット ONE と TWO があります proc sql; select one.*, sales

More information

Version C 1 2 3 4 5 1 2 3 4 5 6 7 8 9 0 A 1 2 1 3 4 5 1 1 2 1 1 1 2 4 5 6 7 8 3 1 2 C a b c d e f g A A B C B a b c d e f g 3 4 4 5 6 7 8 1 2 a b 1 2 a b 1 2 1 2 5 4 1 23 5 6 6 a b 1 2 e c d 3

More information

MC-440 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

More information

piyo0704a.rtfd

piyo0704a.rtfd す ここで中核となるのは 組み込み関数 eval および compile です 1 コードを実行するだけなら Python/Jython で記述したコードを実行するためのツール作りに着手します >>> compile("3+4", "(*.*", "eval" >>> eval(compile("3+4",

More information

合宿事前講座 Web 開発の基本編その 2 情報研究会モブ 薗田海樹 The. H.30 情報研究会 1

合宿事前講座 Web 開発の基本編その 2 情報研究会モブ 薗田海樹 The. H.30 情報研究会 1 合宿事前講座 Web 開発の基本編その 2 情報研究会モブ 薗田海樹 2018 6.12 The. 1 前回の復習 n ブラウザ って何? n Web サイト のキホンを作ってみよう 2 ブラウザ とは?HTML とは?? n ブラウザとは? WEB ページを閲覧するためのソフトウェア p HTML というブラウザに言語を表示する言語によって表示されている n HTML とは? p Hyper Text

More information

ブロックの 1 文字目のを変更する セレクタ : first-letter { 1 文字目のを指定するフォントや文字色 背景色 枠線などの ブロックの 1 文字目を字下げする text-indent: 字下げ幅段落の1 文字目の字下げ幅を指定する em( 標準 1em) px( ピクセル ) pt(

ブロックの 1 文字目のを変更する セレクタ : first-letter { 1 文字目のを指定するフォントや文字色 背景色 枠線などの ブロックの 1 文字目を字下げする text-indent: 字下げ幅段落の1 文字目の字下げ幅を指定する em( 標準 1em) px( ピクセル ) pt( 演習室の PC のハードディスクには演習で作成したデータは保管できません 各 PC の ネットワーク接続 ショートカットからメディア情報センターのサーバーにアクセスしてください (Z ドライブとして使用できます ) Web プログラミング 1 HTML+CSS (4) (2 章 ) 2013/5/15( 水 ) 演習名 使用するフォルダ 演習 1 Z: Webプログラミング1 20130515 演習

More information

デジタル表現論・第4回

デジタル表現論・第4回 デジタル表現論 第 4 回 劉雪峰 ( リュウシュウフォン ) 2016 年 5 月 2 日 劉 雪峰 ( リュウシュウフォン ) デジタル表現論 第 4 回 2016 年 5 月 2 日 1 / 14 本日の目標 Java プログラミングの基礎 出力の復習 メソッドの定義と使用 劉 雪峰 ( リュウシュウフォン ) デジタル表現論 第 4 回 2016 年 5 月 2 日 2 / 14 出力 Systemoutprint()

More information

Prog2_15th

Prog2_15th 2019 年 7 月 25 日 ( 木 ) 実施メニューメニューバーとコンテクストメニュー Visual C# では, メニューはコントロールの一つとして扱われ, フォームアプリケーションの上部に配置されるメニューバーと, コントロール上でマウスを右クリックすると表示されるコンテクストメニューとに対応している これ等は選択するとメニューアイテムのリストが表示されるプルダウンメニューと呼ばれる形式に従う

More information

Assignment_.java /////////////////////////////////////////////////////////////////////// // 課題 星の画像がマウスカーソルを追従するコードを作成しなさい 次 ///////////////////

Assignment_.java /////////////////////////////////////////////////////////////////////// // 課題 星の画像がマウスカーソルを追従するコードを作成しなさい 次 /////////////////// Assignment_.java 0 0 0 0 0 /////////////////////////////////////////////////////////// // 課題 次のようにマウスのカーソルに同期しメッセージを /////////////////////////////////////////////////////////// class Assignment_ extends

More information

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet

Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet 13 Java 13.9 Applet 13.10 AppletContext 13.11 Applet java.lang.object java.awt.component java.awt.container java.awt.panel java.applet.applet Applet (1/2) Component GUI etc Container Applet (2/2) Panel

More information

- 1 - - 0.5%5 10 10 5 10 1 5 1

- 1 - - 0.5%5 10 10 5 10 1 5 1 - - - 1 - - 0.5%5 10 10 5 10 1 5 1 - 2 - - - - A B A A A B A B B A - 3 - - 100 100 100 - A) ( ) B) A) A B A B 110 A B 13 - 4 - A) 36 - - - 5 - - 1 - 6-1 - 7 - - 8 - Q.15 0% 10% 20% 30% 40% 50% 60% 70%

More information

SJ-WA35T 2版

SJ-WA35T 2版 2 4 12 15 14 5 9 6 7 SJ-WA35T 8 11 4 5 2 11 3 15 4 1 2 15 3 5 5 6 4 1 2 7 8 9 1 2 10 10 10 15 11 5 6 8 8 4 12 4 4 4 6 5 11 10 10 9 13 http://www.sharp.co.jp/support/refrigerator/ 14 This model is designed

More information

SURE: Shizuoka University REp http://ir.lib.shizuoka.ac.jp/ Title アドホックネットワークの 実 用 化 に 関 する 研 究 Author(s) 松 井, 進 Citation Issue Date 2009-03-22 URL http://doi.org/10.14945/00006405 Version ETD Rights This

More information

ohp03.dvi

ohp03.dvi 19 3 ( ) 2019.4.20 CS 1 (comand line arguments) Unix./a.out aa bbb ccc ( ) C main void int main(int argc, char *argv[]) {... 2 (2) argc argv argc ( ) argv (C char ) ( 1) argc 4 argv NULL. / a. o u t \0

More information