本文整理汇总了C++中CInputDialog::GetValue方法的典型用法代码示例。如果您正苦于以下问题:C++ CInputDialog::GetValue方法的具体用法?C++ CInputDialog::GetValue怎么用?C++ CInputDialog::GetValue使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CInputDialog
的用法示例。
在下文中一共展示了CInputDialog::GetValue方法的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: OnMenuMkdir
void CLocalListView::OnMenuMkdir(wxCommandEvent& event)
{
CInputDialog dlg;
if (!dlg.Create(this, _("Create directory"), _("Please enter the name of the directory which should be created:")))
return;
if (dlg.ShowModal() != wxID_OK)
return;
if (dlg.GetValue() == _T(""))
{
wxBell();
return;
}
wxFileName fn(dlg.GetValue(), _T(""));
fn.Normalize(wxPATH_NORM_ALL, m_dir);
bool res;
{
wxLogNull log;
res = fn.Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL);
}
if (!res)
wxBell();
DisplayDir(m_dir);
}
示例2: MenuMkdir
// Helper-Function to create a new Directory
// Returns the name of the new directory
wxString CLocalListView::MenuMkdir()
{
CInputDialog dlg;
if (!dlg.Create(this, _("Create directory"), _("Please enter the name of the directory which should be created:")))
return _T("");
if (dlg.ShowModal() != wxID_OK)
return _T("");
if (dlg.GetValue() == _T(""))
{
wxBell();
return _T("");
}
wxFileName fn(dlg.GetValue(), _T(""));
fn.Normalize(wxPATH_NORM_ALL, m_dir);
bool res;
{
wxLogNull log;
res = fn.Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL);
}
if (!res) {
wxBell();
return _T("");
}
// Return name of the New Directory
// return dlg.GetValue();
// return fn.GetDirs().Last();
return fn.GetPath();
}
示例3: OnSaveAs
void CFilterDialog::OnSaveAs(wxCommandEvent& event)
{
CInputDialog dlg;
dlg.Create(this, _("Enter name for filterset"), _("Please enter a unique name for this filter set"));
if (dlg.ShowModal() != wxID_OK)
return;
wxString name = dlg.GetValue();
if (name == _T(""))
{
wxMessageBox(_("No name for the filterset given."), _("Cannot save filterset"), wxICON_INFORMATION);
return;
}
wxChoice* pChoice = XRCCTRL(*this, "ID_SETS", wxChoice);
int pos = pChoice->FindString(name);
if (pos != wxNOT_FOUND)
{
if (wxMessageBox(_("Given filterset name already exists, overwrite filter set?"), _("Filter set already exists"), wxICON_QUESTION | wxYES_NO) != wxYES)
return;
}
if (pos == wxNOT_FOUND)
{
pos = m_filterSets.size();
m_filterSets.push_back(m_filterSets[0]);
pChoice->Append(name);
}
else
m_filterSets[pos] = m_filterSets[0];
m_filterSets[pos].name = name;
pChoice->SetSelection(pos);
m_currentFilterSet = pos;
}
示例4: OnRename
void CFilterDialog::OnRename(wxCommandEvent& event)
{
wxChoice* pChoice = XRCCTRL(*this, "ID_SETS", wxChoice);
int old_pos = pChoice->GetSelection();
if (old_pos == -1)
return;
if (!old_pos) {
wxMessageBoxEx(_("This filter set cannot be renamed."));
return;
}
CInputDialog dlg;
wxString msg = wxString::Format(_("Please enter a new name for the filter set \"%s\""), pChoice->GetStringSelection());
dlg.Create(this, _("Enter new name for filterset"), msg);
if (dlg.ShowModal() != wxID_OK)
return;
wxString name = dlg.GetValue();
if (name == pChoice->GetStringSelection()) {
// Nothing changed
return;
}
if (name.empty()) {
wxMessageBoxEx(_("No name for the filterset given."), _("Cannot save filterset"), wxICON_INFORMATION);
return;
}
int pos = pChoice->FindString(name);
if (pos != wxNOT_FOUND) {
if (wxMessageBoxEx(_("Given filterset name already exists, overwrite filter set?"), _("Filter set already exists"), wxICON_QUESTION | wxYES_NO) != wxYES)
return;
}
// Remove old entry
pChoice->Delete(old_pos);
CFilterSet set = m_filterSets[old_pos];
m_filterSets.erase(m_filterSets.begin() + old_pos);
pos = pChoice->FindString(name);
if (pos == wxNOT_FOUND) {
pos = m_filterSets.size();
m_filterSets.push_back(set);
pChoice->Append(name);
}
else
m_filterSets[pos] = set;
m_filterSets[pos].name = name;
pChoice->SetSelection(pos);
m_currentFilterSet = pos;
GetSizer()->Fit(this);
}
示例5: OnMkdir
void CRemoteTreeView::OnMkdir(wxCommandEvent& event)
{
if (!m_pState->IsRemoteIdle())
return;
if (!m_contextMenuItem)
return;
const CServerPath& path = GetPathFromItem(m_contextMenuItem);
if (path.IsEmpty())
return;
CInputDialog dlg;
if (!dlg.Create(this, _("Create directory"), _("Please enter the name of the directory which should be created:")))
return;
CServerPath newPath = path;
// Append a long segment which does (most likely) not exist in the path and
// replace it with "New directory" later. This way we get the exact position of
// "New directory" and can preselect it in the dialog.
wxString tmpName = _T("25CF809E56B343b5A12D1F0466E3B37A49A9087FDCF8412AA9AF8D1E849D01CF");
if (newPath.AddSegment(tmpName))
{
wxString pathName = newPath.GetPath();
int pos = pathName.Find(tmpName);
wxASSERT(pos != -1);
wxString newName = _("New directory");
pathName.Replace(tmpName, newName);
dlg.SetValue(pathName);
dlg.SelectText(pos, pos + newName.Length());
}
if (dlg.ShowModal() != wxID_OK)
return;
newPath = path;
if (!newPath.ChangePath(dlg.GetValue()))
{
wxBell();
return;
}
m_pState->m_pCommandQueue->ProcessCommand(new CMkdirCommand(newPath));
CServerPath listed;
if (newPath.HasParent())
{
listed = newPath.GetParent();
m_pState->ChangeRemoteDir(listed);
}
CServerPath currentPath;
const wxTreeItemId selected = GetSelection();
if (selected)
currentPath = GetPathFromItem(selected);
if (!currentPath.IsEmpty() && currentPath != listed)
m_pState->ChangeRemoteDir(currentPath);
}
示例6: OnMenuMkdir
void CLocalTreeView::OnMenuMkdir(wxCommandEvent& event)
{
if (!m_contextMenuItem.IsOk())
return;
wxString path = GetDirFromItem(m_contextMenuItem);
if (path.Last() != wxFileName::GetPathSeparator())
path += wxFileName::GetPathSeparator();
if (!CLocalPath(path).IsWriteable())
{
wxBell();
return;
}
CInputDialog dlg;
if (!dlg.Create(this, _("Create directory"), _("Please enter the name of the directory which should be created:")))
return;
wxString newName = _("New directory");
dlg.SetValue(path + newName);
dlg.SelectText(path.Len(), path.Len() + newName.Len());
if (dlg.ShowModal() != wxID_OK)
return;
wxFileName fn(dlg.GetValue(), _T(""));
if (!fn.Normalize(wxPATH_NORM_ALL, path))
{
wxBell();
return;
}
bool res;
{
wxLogNull log;
res = fn.Mkdir(fn.GetPath(), 0777, wxPATH_MKDIR_FULL);
}
if (!res)
wxBell();
Refresh();
m_pState->RefreshLocal();
}
示例7: LoadKeyFile
bool COptionsPageConnectionSFTP::LoadKeyFile(wxString& keyFile, bool silent, wxString& comment, wxString& data)
{
if (!LoadProcess())
return false;
// Get keytype
if (!Send(_T("file " + keyFile)))
return false;
wxString reply;
enum ReplyCode code = GetReply(reply);
if (code == failure)
return false;
if (code == error || (reply != _T("0") && reply != _T("1")))
{
if (!silent)
{
const wxString msg = wxString::Format(_("The file '%s' could not be loaded or does not contain a private key."), keyFile.c_str());
wxMessageBox(msg, _("Could not load keyfile"), wxICON_EXCLAMATION);
}
return false;
}
bool needs_conversion;
if (reply == _T("1"))
{
if (silent)
return false;
needs_conversion = true;
}
else
needs_conversion = false;
// Check if file is encrypted
if (!Send(_T("encrypted")))
return false;
code = GetReply(reply);
if (code != success)
{
wxASSERT(code != error);
return false;
}
bool encrypted;
if (reply == _T("1"))
{
if (silent)
return false;
encrypted = true;
}
else
encrypted = false;
if (encrypted || needs_conversion)
{
wxASSERT(!silent);
wxString msg;
if (needs_conversion)
{
if (!encrypted)
msg = wxString::Format(_("The file '%s' is not in a format supported by FileZilla.\nWould you like to convert it into a supported format?"), keyFile.c_str());
else
msg = wxString::Format(_("The file '%s' is not in a format supported by FileZilla.\nThe file is also password protected. Password protected keyfiles are not supported by FileZilla yet.\nWould you like to convert it into a supported, unprotected format?"), keyFile.c_str());
}
else if (encrypted)
msg = wxString::Format(_("The file '%s' is password protected. Password protected keyfiles are not supported by FileZilla yet.\nWould you like to convert it into an unprotected file?"), keyFile.c_str());
int res = wxMessageBox(msg, _("Convert keyfile"), wxICON_QUESTION | wxYES_NO);
if (res != wxYES)
return false;
if (encrypted)
{
wxString msg = wxString::Format(_("Enter the password for the file '%s'.\nPlease note that the converted file will not be password protected."), keyFile.c_str());
CInputDialog dlg;
if (!dlg.Create(this, _("Password required"), msg))
return false;
dlg.SetPasswordMode(true);
if (dlg.ShowModal() != wxID_OK)
return false;
if (!Send(_T("password " + dlg.GetValue())))
return false;
if (GetReply(reply) != success)
return false;
}
if (!Send(_T("load")))
return false;
code = GetReply(reply);
if (code == failure)
return false;
if (code != success)
{
wxString msg = wxString::Format(_("Failed to load private key: %s"), reply.c_str());
wxMessageBox(msg, _("Could not load private key"), wxICON_EXCLAMATION);
return false;
}
wxFileDialog dlg(this, _("Select filename for converted keyfile"), _T(""), _T(""), _T("PuTTY private key files (*.ppk)|*.ppk"), wxFD_SAVE | wxFD_OVERWRITE_PROMPT);
if (dlg.ShowModal() != wxID_OK)
//.........这里部分代码省略.........