本文整理汇总了C++中SFTPSettings::GetAccounts方法的典型用法代码示例。如果您正苦于以下问题:C++ SFTPSettings::GetAccounts方法的具体用法?C++ SFTPSettings::GetAccounts怎么用?C++ SFTPSettings::GetAccounts使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SFTPSettings
的用法示例。
在下文中一共展示了SFTPSettings::GetAccounts方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SFTPTreeViewBase
SFTPTreeView::SFTPTreeView(wxWindow* parent, SFTP* plugin)
: SFTPTreeViewBase(parent)
, m_plugin(plugin)
{
wxImageList* il = m_bmpLoader.MakeStandardMimeImageList();
m_treeListCtrl->AssignImageList(il);
SFTPSettings settings;
settings.Load();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
SSHAccountInfo::Vect_t::const_iterator iter = accounts.begin();
for(; iter != accounts.end(); ++iter) {
m_choiceAccount->Append(iter->GetAccountName());
}
if(!m_choiceAccount->IsEmpty()) {
m_choiceAccount->SetSelection(0);
}
#ifdef __WXMSW__
m_treeListCtrl->GetDataView()->SetIndent(16);
#endif
m_treeListCtrl->SetItemComparator(new SFTPItemComparator);
m_treeListCtrl->Connect(
ID_OPEN, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SFTPTreeView::OnMenuOpen), NULL, this);
m_treeListCtrl->Connect(
ID_DELETE, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SFTPTreeView::OnMenuDelete), NULL, this);
m_treeListCtrl->Connect(
ID_NEW, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SFTPTreeView::OnMenuNew), NULL, this);
m_treeListCtrl->Connect(
ID_RENAME, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SFTPTreeView::OnMenuRename), NULL, this);
m_treeListCtrl->Connect(
ID_NEW_FILE, wxEVT_COMMAND_MENU_SELECTED, wxCommandEventHandler(SFTPTreeView::OnMenuNewFile), NULL, this);
m_treeListCtrl->Connect(ID_REFRESH_FOLDER,
wxEVT_COMMAND_MENU_SELECTED,
wxCommandEventHandler(SFTPTreeView::OnMenuRefreshFolder),
NULL,
this);
m_treeListCtrl->Bind(wxEVT_MENU, &SFTPTreeView::OnShowTypeCol, this, ID_SHOW_TYPE_COL);
m_treeListCtrl->Bind(wxEVT_MENU, &SFTPTreeView::OnShowSizeCol, this, ID_SHOW_SIZE_COL);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnCopy, this, wxID_COPY);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnCut, this, wxID_CUT);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnPaste, this, wxID_PASTE);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnSelectAll, this, wxID_SELECTALL);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnUndo, this, wxID_UNDO);
wxTheApp->GetTopWindow()->Bind(wxEVT_COMMAND_MENU_SELECTED, &SFTPTreeView::OnRedo, this, wxID_REDO);
bool sizeColVisible = clConfig::Get().Read("SFTP/TreeView/ShowSizeCol", true);
bool typeColVisible = clConfig::Get().Read("SFTP/TreeView/ShowTypeCol", true);
if(!sizeColVisible) {
m_treeListCtrl->DeleteColumn(GetSizeColumnIndex());
}
if(!typeColVisible) {
m_treeListCtrl->DeleteColumn(GetTypeColumnIndex());
}
}
示例2: SFTPTreeViewBase
SFTPTreeView::SFTPTreeView(wxWindow* parent, SFTP* plugin)
: SFTPTreeViewBase(parent)
, m_plugin(plugin)
{
wxImageList* il = m_bmpLoader.MakeStandardMimeImageList();
m_treeListCtrl->AssignImageList(il);
SFTPSettings settings;
settings.Load();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
SSHAccountInfo::Vect_t::const_iterator iter = accounts.begin();
for(; iter != accounts.end(); ++iter) {
m_choiceAccount->Append(iter->GetAccountName());
}
if(!m_choiceAccount->IsEmpty()) {
m_choiceAccount->SetSelection(0);
}
#ifdef __WXMSW__
m_treeListCtrl->GetDataView()->SetIndent(16);
#endif
m_treeListCtrl->SetItemComparator(new SFTPItemComparator);
m_treeListCtrl->Connect(ID_OPEN, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuOpen), NULL, this);
m_treeListCtrl->Connect(ID_OPEN_WITH_DEFAULT_APP,
wxEVT_MENU,
wxCommandEventHandler(SFTPTreeView::OnMenuOpenWithDefaultApplication),
NULL,
this);
m_treeListCtrl->Connect(ID_OPEN_CONTAINING_FOLDER,
wxEVT_MENU,
wxCommandEventHandler(SFTPTreeView::OnMenuOpenContainingFolder),
NULL,
this);
m_treeListCtrl->Connect(ID_DELETE, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuDelete), NULL, this);
m_treeListCtrl->Connect(ID_NEW, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuNew), NULL, this);
m_treeListCtrl->Connect(ID_RENAME, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuRename), NULL, this);
m_treeListCtrl->Connect(ID_NEW_FILE, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuNewFile), NULL, this);
m_treeListCtrl->Connect(
ID_REFRESH_FOLDER, wxEVT_MENU, wxCommandEventHandler(SFTPTreeView::OnMenuRefreshFolder), NULL, this);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnCopy, this, wxID_COPY);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnCut, this, wxID_CUT);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnPaste, this, wxID_PASTE);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnSelectAll, this, wxID_SELECTALL);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnUndo, this, wxID_UNDO);
wxTheApp->GetTopWindow()->Bind(wxEVT_MENU, &SFTPTreeView::OnRedo, this, wxID_REDO);
m_treeListCtrl->SetDropTarget(new clFileOrFolderDropTarget(this));
Bind(wxEVT_DND_FILE_DROPPED, &SFTPTreeView::OnFileDropped, this);
}
示例3: SSHAccountManagerDlgBase
SSHAccountManagerDlg::SSHAccountManagerDlg(wxWindow* parent)
: SSHAccountManagerDlgBase(parent)
{
SFTPSettings settings;
settings.Load();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
SSHAccountInfo::Vect_t::const_iterator iter = accounts.begin();
for(; iter != accounts.end(); ++iter) {
DoAddAccount(*iter);
}
WindowAttrManager::Load(this, "SSHAccountManagerDlg", NULL);
}
示例4: MSWInitiateConnection
void SFTP::MSWInitiateConnection()
{
#ifdef __WXMSW__
// Under Windows, there seems to be a small problem with the connection establishment
// only the first connection seems to be unstable (i.e. it takes up to 30 seconds to create it)
// to workaround this, we initiate a dummy connection to the first connection we can find
SFTPSettings settings;
settings.Load();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
if(accounts.empty()) return;
const SSHAccountInfo& account = accounts.at(0);
SFTPWorkerThread::Instance()->Add(new SFTPThreadRequet(account));
#endif
}
示例5: OnOpenAccountManager
void SFTPTreeView::OnOpenAccountManager(wxCommandEvent& event)
{
SSHAccountManagerDlg dlg(this);
if(dlg.ShowModal() == wxID_OK) {
SFTPSettings settings;
settings.Load();
settings.SetAccounts(dlg.GetAccounts());
settings.Save();
// Update the selections at the top
wxString curselection = m_choiceAccount->GetStringSelection();
m_choiceAccount->Clear();
const SSHAccountInfo::Vect_t& accounts = settings.GetAccounts();
if(accounts.empty()) {
DoCloseSession();
return;
} else {
SSHAccountInfo::Vect_t::const_iterator iter = accounts.begin();
for(; iter != accounts.end(); ++iter) {
m_choiceAccount->Append(iter->GetAccountName());
}
int where = m_choiceAccount->FindString(curselection);
if(where == wxNOT_FOUND) {
// Our previous session is no longer available, close the session
DoCloseSession();
where = 0;
}
m_choiceAccount->SetSelection(where);
}
}
}
示例6: DoOpenSession
void SFTPTreeView::DoOpenSession()
{
DoCloseSession();
if(!GetAccountFromUser(m_account)) { return; }
wxString message;
wxProgressDialog dlg(_("SFTP"), wxString(' ', 100) + "\n\n", 10);
dlg.Show();
dlg.Update(1, wxString() << _("Connecting to: ") << m_account.GetAccountName() << "..."
<< _("\n(this may take a few seconds)"));
// We know that there is a bug that libssh succeeded on connecting only on the second attempt..
// to workaround it, we issue first connect with 1 second timeout, and then re-open the connection
try {
clSSH::Ptr_t ssh(
new clSSH(m_account.GetHost(), m_account.GetUsername(), m_account.GetPassword(), m_account.GetPort()));
ssh->Connect(wxNOT_FOUND);
} catch(...) {
}
try {
clSSH::Ptr_t ssh(
new clSSH(m_account.GetHost(), m_account.GetUsername(), m_account.GetPassword(), m_account.GetPort()));
ssh->Connect(5);
dlg.Update(5, _("Connected!"));
dlg.Update(6, _("Authenticating server..."));
if(!ssh->AuthenticateServer(message)) {
if(::wxMessageBox(message, "SSH", wxYES_NO | wxCENTER | wxICON_QUESTION) == wxYES) {
dlg.Update(7, _("Accepting server authentication server..."));
ssh->AcceptServerAuthentication();
}
} else {
dlg.Update(7, _("Server authenticated"));
}
dlg.Update(8, _("Logging in.."));
ssh->Login();
m_sftp.reset(new clSFTP(ssh));
m_sftp->Initialize();
m_sftp->SetAccount(m_account.GetAccountName());
m_plugin->GetManager()->SetStatusMessage(wxString() << _("Done!"));
dlg.Update(9, _("Fetching directory list..."));
DoBuildTree(m_account.GetDefaultFolder().IsEmpty() ? "/" : m_account.GetDefaultFolder());
dlg.Update(10, _("Done"));
CallAfter(&SFTPTreeView::DoLoadSession);
// If this is a new account, offer the user to save it
SFTPSettings s;
s.Load();
SSHAccountInfo dummy;
if(!s.GetAccount(m_account.GetAccountName(), dummy)) {
wxString message;
message << _("Would you like to save this account?\n") << _("It will be saved as '")
<< m_account.GetAccountName() << "'";
wxStandardID res = ::PromptForYesNoCancelDialogWithCheckbox(message, "SFTPQuickConnectSaveDlg");
if(res == wxID_YES) {
// This 'Connect' was via Quick Connect option
SSHAccountInfo::Vect_t accounts = s.GetAccounts();
accounts.push_back(m_account);
s.SetAccounts(accounts);
s.Save();
}
}
} catch(clException& e) {
::wxMessageBox(e.What(), "CodeLite", wxICON_ERROR | wxOK);
DoCloseSession();
}
}