table.property_column_spacing () = 8;
table.property_row_spacing () = 8;
- add (table);
+
+ hbox.pack_start (table, false, true, 8);
+ hbox.pack_start (raw_view, true, true, 8);
+
+ table.set_size_request (250, 0);
+
+ add (hbox);
property_label_xalign () = 0;
set_label ("Propiedades");
ss3 >> s3;
node_freespace.set_label (s3);
+ raw_view.get_buffer ()->assign (ToRaw (data));
+
if (dynamic_cast<BTreeChildData *>(data)) {
data_type.set_label ("BTreeChildData");
data_key.set_label ("N/C");
}
}
+std::string ViewProperties::ToRaw (BTreeData *p)
+{
+ std::stringstream ss;
+ uint size = 0, i;
+ uchar *arr = NULL;
+ if (p->GetKey ()) {
+ arr = p->GetKey ()->ToRaw (size);
+ }
+
+ for (i=0; i < size; i++) {
+ if (isalnum (arr[i]) || (arr[i] == ']') || (arr[i] == '|') ||
+ (arr[i] == '[') || (arr[i] == '-'))
+ ss << arr[i];
+ else
+ ss << ".";
+ }
+
+ if (p->GetChild () != 0) {
+ ss << "(";
+ ss << p->GetChild ();
+ ss << ")";
+ }
+
+ if (arr)
+ delete [] arr;
+ return ss.str ();
+}
+