| 25 | } |
| 26 | |
| 27 | QString QHexEditPlugin::domXml() const |
| 28 | { |
| 29 | return "<ui language=\"c++\">\n" |
| 30 | " <widget class=\"QHexEdit\" name=\"hexEdit\">\n" |
| 31 | " <property name=\"geometry\">\n" |
| 32 | " <rect>\n" |
| 33 | " <x>0</x>\n" |
| 34 | " <y>0</y>\n" |
| 35 | " <width>100</width>\n" |
| 36 | " <height>100</height>\n" |
| 37 | " </rect>\n" |
| 38 | " </property>\n" |
| 39 | " <property name=\"toolTip\" >\n" |
| 40 | " <string>QHexEditWidget</string>\n" |
| 41 | " </property>\n" |
| 42 | " <property name=\"whatsThis\" >\n" |
| 43 | " <string>QHexEdit widget allow to edit the data in hex view.</string>\n" |
| 44 | " </property>\n" |
| 45 | " </widget>\n" |
| 46 | "</ui>\n"; |
| 47 | } |
| 48 | |
| 49 | QString QHexEditPlugin::group() const |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected