readme.1st

来自「gtk是linux一款强大的夸平台的图形化开发工具」· 1ST 代码 · 共 42 行

1ST
42
字号
GTK Example Code - Tony Gale <gale@gtk.org> 980623--------------------------------------------------I have written an awk script to automatically extract the codeexamples from the GTK Tutorial (in sgml), so they only have to bechanged in one place.It's called 'extract.awk', and there is a shell wrapper to invokeit called 'extract.sh'It takes the following switches: -c : Just do checking rather than output files -f <filename> : Extract a specific file -d : Extract file(s) to current directoryWithout the -d switch, the code will be placed in the appropriatesub-directory. Those sub-directories will be created if they do notexist.Without the -f switch, all code examples will be extracted.The shell wrapper assumes that the GTK Tutorial is in the file "../docs/gtk_tut.sgml"It works by looking for sections of text in the tutorial surroundedby, for example:/* example-start helloworld helloworld.c */and/* example-end */Where "helloworld" is the directory into which the file will beplaced (which can also be a directory spec like hello/hello1), and"helloworld.c" is the file name for the code.So, the code between these lines would be extracted to the filehelloworld/helloworld.cIt also handles replacing the sgml tag '&amp;' with '&'

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?