Revision: 1346
http://sourceforge.net/p/qterm/code/1346
Author: sidos
Date: 2014-10-14 19:42:45 +0000 (Tue, 14 Oct 2014)
Log Message:
-----------
add/remove symbols according to smth bbs editor
Modified Paths:
--------------
trunk/qterm/src/charpane.cpp
Modified: trunk/qterm/src/charpane.cpp
===================================================================
--- trunk/qterm/src/charpane.cpp 2014-10-14 13:47:14 UTC (rev 1345)
+++ trunk/qterm/src/charpane.cpp 2014-10-14 19:42:45 UTC (rev 1346)
@@ -51,20 +51,13 @@
"⒈⒉⒊⒋⒌⒍⒎⒏⒐⒑"
"⒒⒓⒔⒕⒖⒗⒘⒙⒚⒛"
"①②③④⑤⑥⑦⑧⑨⑩"
- "➀➁➂➃➄➅➆➇➈➉"
- "❶❷❸❹❺❻❼❽❾❿"
- "➊➋➌➍➎➏➐➑➒➓"
"⑴⑵⑶⑷⑸⑹⑺⑻⑼⑽"
"㈠㈡㈢㈣㈤㈥㈦㈧㈨㈩"
"ⅰⅱⅲⅳⅴⅵⅶⅷⅸⅹ"
"ⅠⅡⅢⅣⅤⅥⅦⅧⅨⅩ");
mapSymbol["Arrow"] = QString::fromUtf8(
- "➔➘➙➚➛➜➝➞➟"
- "➠➡➢➣➤➥➦➧➨➩➪➫➬➭➮➯"
- "➱➲➳➴➵➶➷➸➹➺➻➼➽➾"
- "↖↗↘↙→←↑↓"
- "⇄⇅↲↳↴↵↶↷↺↻");
+ "↖↗↘↙→←↑↓");
mapSymbol["Mathematic"] = QString::fromUtf8(
"+-×÷±∵∴∈≡∝"
@@ -75,12 +68,12 @@
"┗┛┏┓└┘┌┐┕┙┍┑┖┚┎┒"
"┣┫┠┨┝┥├┤┡┩┢┪┟┧┞┦┴┬┶┭┹┮┷┯┳┻"
"┵┲┸┰┺┱┾┽┿┼"
- "╀╁╂╃╄╅╆╇╈╉╊╋╌╍╎╏"
+ "╀╁╂╃╄╅╆╇╈╉╊╋"
"═║╚╝╙╜╘╛╔╗╓╖╒╕╠╣╟╢╞╡"
"╩╦╧╤╨╥╬╪╫"
- "╭╮╰╯╱╲╳╴╵╶╷╸╹╻╺╼╽╾╿"
+ "╭╮╰╯╱╲╳"
"▁▂▃▄▅▆▇█▉▊▋▌▍▎▏"
- "▐░▒▓▔▕"); // U+2500-U+257F
+ "▐░▒▓▔▕");
mapSymbol["CJK"] = QString::fromUtf8(
"〔〕()〈〉《》「」"
@@ -95,7 +88,14 @@
"ηθικλμνξοπ"
"ρστυφχψω");
- listSymbolName << "Table" << "Number" << "CJK" << "Letter"
+ mapSymbol["Symbol"] = QString::fromUtf8(
+ "℡㎎㎏㎜㎝㎞㎡㏄〾⿰⿱"
+ "⿲⿳⿴⿵⿶⿷⿸⿹⿺⿻"
+ "※√▼▽◢◣◥◤"
+ "♂♀☉⊕〇◎〓℉℃㊣"
+ "☆★◇◆□■△▲○●");
+
+ listSymbolName << "Table" << "Number" << "CJK" << "Letter" << "Symbol"
<< "Arrow" << "Mathematic";
foreach(QString symbolName, listSymbolName) {
addSubPane(new CharTable(mapSymbol[symbolName]), symbolName);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|