Lines Matching defs:m_content
1083 m_content = content;
1110 int GetContentLength() { return m_content.length(); }
1116 const char *text = m_content.c_str() + m_first_visibile_char;
1127 surface.PutChar(m_content[m_cursor_position]);
1204 m_content.insert(m_cursor_position, 1, character);
1215 m_content.erase(m_cursor_position - 1, 1);
1226 m_content.erase(m_cursor_position, 1);
1232 m_content.erase(m_cursor_position);
1237 m_content.clear();
1304 bool IsSpecified() { return !m_content.empty(); }
1312 const std::string &GetText() { return m_content; }
1316 m_content.clear();
1319 m_content = text;
1326 std::string m_content;
1345 int GetInteger() { return std::stoi(m_content); }
1385 const std::string &GetPath() { return m_content; }
1428 const std::string &GetPath() { return m_content; }
1448 const std::string &GetArchString() { return m_content; }
1456 : m_label(label), m_content(content) {}
1470 surface.PutChar(m_content ? ACS_DIAMOND : ' ');
1478 void ToggleContent() { m_content = !m_content; }
1480 void SetContentToTrue() { m_content = true; }
1482 void SetContentToFalse() { m_content = false; }
1507 bool GetBoolean() { return m_content; }
1511 bool m_content;
2208 const std::string &GetName() { return m_content; }