Difference between revisions of "love.system.setClipboardText (日本語)"
(Created page with "{{newin (日本語)|0.9.0|090|type=関数}} クリップボードへテキストを出力します。 == 関数 == === 概要 === <source lang="lua"> love.system.setClipbo...") |
(translation update) |
||
Line 11: | Line 11: | ||
ありません。 | ありません。 | ||
+ | == 用例 == | ||
+ | コピーペーストバッファにオペレーティングシステムのアゴニスティックキーバインディングに設定します。 | ||
+ | <source lang="lua"> | ||
+ | local buffer | ||
+ | |||
+ | function love.draw() | ||
+ | |||
+ | love.graphics.print( | ||
+ | "OS: "..love.system.getOS().."\n".. | ||
+ | "Local buffer: "..tostring(buffer).."\n".. | ||
+ | "System buffer: "..tostring(love.system.getClipboardText())) | ||
+ | |||
+ | end | ||
+ | |||
+ | function love.keypressed(key) | ||
+ | |||
+ | local osString = love.system.getOS() | ||
+ | |||
+ | local control | ||
+ | |||
+ | if osString == "OS X" then | ||
+ | control = love.keyboard.isDown("lgui","rgui") | ||
+ | elseif osString == "Windows" or osString == "Linux" then | ||
+ | control = love.keyboard.isDown("lctrl","rctrl") | ||
+ | end | ||
+ | |||
+ | if control then | ||
+ | if key == "c" then | ||
+ | if buffer then love.system.setClipboardText(buffer) end | ||
+ | end | ||
+ | if key == "v" then | ||
+ | buffer = love.system.getClipboardText() | ||
+ | end | ||
+ | end | ||
+ | |||
+ | end | ||
+ | </source> | ||
=== 返値 === | === 返値 === | ||
* [[parent::love.system (日本語)]] | * [[parent::love.system (日本語)]] |
Revision as of 04:44, 4 June 2019
LÖVE 0.9.0 から使用可能 |
この関数は以前のバージョンでは非対応です。 |
クリップボードへテキストを出力します。
関数
概要
love.system.setClipboardText( text )
引数
string text
- システムのクリップボードが新規保持するテキスト。
返値
ありません。
用例
コピーペーストバッファにオペレーティングシステムのアゴニスティックキーバインディングに設定します。
local buffer
function love.draw()
love.graphics.print(
"OS: "..love.system.getOS().."\n"..
"Local buffer: "..tostring(buffer).."\n"..
"System buffer: "..tostring(love.system.getClipboardText()))
end
function love.keypressed(key)
local osString = love.system.getOS()
local control
if osString == "OS X" then
control = love.keyboard.isDown("lgui","rgui")
elseif osString == "Windows" or osString == "Linux" then
control = love.keyboard.isDown("lctrl","rctrl")
end
if control then
if key == "c" then
if buffer then love.system.setClipboardText(buffer) end
end
if key == "v" then
buffer = love.system.getClipboardText()
end
end
end
返値
そのほかの言語
Dansk –
Deutsch –
English –
Español –
Français –
Indonesia –
Italiano –
Lietuviškai –
Magyar –
Nederlands –
Polski –
Português –
Română –
Slovenský –
Suomi –
Svenska –
Türkçe –
Česky –
Ελληνικά –
Български –
Русский –
Српски –
Українська –
עברית –
ไทย –
日本語 –
正體中文 –
简体中文 –
Tiếng Việt –
한국어
More info