window:
	res:
		windowType	wshadowbox
		switch $(COLOR)
			case COLOR:
			case GRAY:
				topShadow	#cf5191
				bottomShadow	#ffdcff
				break
		endswitch
	endres:
endwindow:
dialog: dialogs
	res:
		defaultDistance		#(fWidth)
		dialogType		modal
		defaultButton		ok
	endres:
	ditem: face
		res:
			itemType	bitmap
			bitmapPath	$(icons)
			bitmapFile	Error
			vertDistance	#(fWidth)
			horizDistance	#(fWidth)
			switch $(COLOR)
				case COLOR:
				case GRAY:
					foreground	#cf5191
					break
			endswitch
		endres:
	endditem:
	ditem: msg
		res:
			itemType	bitmap
			leftLabel	'  ߻߽ϴ.'
			leftKanjiFont	$(kanjiFont)
			leftFont	$(kanaFont)
			fromHoriz	face
			vertDistance	#(fWidth)*2
			horizDistance	#(fWidth)
		endres:
	endditem:
	ditem: ok
		res:
			itemType	button
			label		' ϡ '
			kanjiFont	$(kanjiFont)
			font		$(kanaFont)
			fromVert	face
			vertDistance	#(fWidth)*2
			horizDistance	#(fWidth)*8
		endres:
		act:
			close
		endact:
	endditem:
enddialog:
proc: open
	switch $(operation_err)
		case format:
			setval msg leftLabel '  ߻߽ϴ.'
			break
		case read:
			setval msg leftLabel 'б߿  ߻߽ϴ.'
			break
	endswitch
endproc:
