Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Synchronet
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Main
Synchronet
Commits
5ef5c0bf
Commit
5ef5c0bf
authored
13 years ago
by
deuce
Browse files
Options
Downloads
Patches
Plain Diff
Add right-click menu to copy items/refresh list.
parent
aa11c478
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/sbbs3/userlist/SBBS_User_ListMain.cpp
+64
-0
64 additions, 0 deletions
src/sbbs3/userlist/SBBS_User_ListMain.cpp
src/sbbs3/userlist/SBBS_User_ListMain.h
+14
-0
14 additions, 0 deletions
src/sbbs3/userlist/SBBS_User_ListMain.h
with
78 additions
and
0 deletions
src/sbbs3/userlist/SBBS_User_ListMain.cpp
+
64
−
0
View file @
5ef5c0bf
...
...
@@ -9,6 +9,8 @@
#include
"SBBS_User_ListMain.h"
#include
<wx/msgdlg.h>
#include
<wx/clipbrd.h>
#include
<wx/dataobj.h>
//(*InternalHeaders(SBBS_User_ListFrame)
#include
<wx/intl.h>
...
...
@@ -54,6 +56,10 @@ const long SBBS_User_ListFrame::ID_PANEL1 = wxNewId();
const
long
SBBS_User_ListFrame
::
idMenuQuit
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
idMenuAbout
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
ID_STATUSBAR1
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
ID_EDITUSER
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
ID_COPY
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
ID_COPYALL
=
wxNewId
();
const
long
SBBS_User_ListFrame
::
ID_REFRESH
=
wxNewId
();
//*)
BEGIN_EVENT_TABLE
(
SBBS_User_ListFrame
,
wxFrame
)
...
...
@@ -179,15 +185,28 @@ SBBS_User_ListFrame::SBBS_User_ListFrame(wxWindow* parent,wxWindowID id)
StatusBar1
->
SetFieldsCount
(
1
,
__wxStatusBarWidths_1
);
StatusBar1
->
SetStatusStyles
(
1
,
__wxStatusBarStyles_1
);
SetStatusBar
(
StatusBar1
);
MenuItem3
=
new
wxMenuItem
((
&
ContextMenu
),
ID_EDITUSER
,
_
(
"Edit User
\t
E"
),
wxEmptyString
,
wxITEM_NORMAL
);
ContextMenu
.
Append
(
MenuItem3
);
MenuItem3
->
Enable
(
false
);
MenuItem4
=
new
wxMenuItem
((
&
ContextMenu
),
ID_COPY
,
_
(
"Copy
\t
C"
),
wxEmptyString
,
wxITEM_NORMAL
);
ContextMenu
.
Append
(
MenuItem4
);
MenuItem5
=
new
wxMenuItem
((
&
ContextMenu
),
ID_COPYALL
,
_
(
"Copy All
\t
A"
),
wxEmptyString
,
wxITEM_NORMAL
);
ContextMenu
.
Append
(
MenuItem5
);
MenuItem6
=
new
wxMenuItem
((
&
ContextMenu
),
ID_REFRESH
,
_
(
"Refresh
\t
R"
),
wxEmptyString
,
wxITEM_NORMAL
);
ContextMenu
.
Append
(
MenuItem6
);
Connect
(
ID_ARSTEXTCTRL
,
wxEVT_COMMAND_TEXT_UPDATED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnARSFilterText
);
Connect
(
ID_CLEARBUTTON
,
wxEVT_COMMAND_BUTTON_CLICKED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnClearButtonClick
);
Connect
(
ID_USERLISTCTRL
,
wxEVT_COMMAND_LIST_ITEM_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnUserListItemSelect
);
Connect
(
ID_USERLISTCTRL
,
wxEVT_COMMAND_LIST_ITEM_DESELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnUserListItemSelect
);
Connect
(
ID_USERLISTCTRL
,
wxEVT_COMMAND_LIST_ITEM_RIGHT_CLICK
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnUserListItemRClick
);
Connect
(
ID_QVCHOICE
,
wxEVT_COMMAND_CHOICE_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnQVChoiceSelect
);
Connect
(
ID_REFRESHBUTTON
,
wxEVT_COMMAND_BUTTON_CLICKED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnRefreshButtonClick
);
Connect
(
idMenuQuit
,
wxEVT_COMMAND_MENU_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnQuit
);
Connect
(
idMenuAbout
,
wxEVT_COMMAND_MENU_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnAbout
);
Connect
(
ID_COPY
,
wxEVT_COMMAND_MENU_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
CopyMenuItemSelected
);
Connect
(
ID_COPYALL
,
wxEVT_COMMAND_MENU_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
CopyAllMenuItemSelected
);
Connect
(
ID_REFRESH
,
wxEVT_COMMAND_MENU_SELECTED
,(
wxObjectEventFunction
)
&
SBBS_User_ListFrame
::
OnRefreshButtonClick
);
//*)
// Stupid Windows Dance
...
...
@@ -348,3 +367,48 @@ void SBBS_User_ListFrame::OnQVChoiceSelect(wxCommandEvent& event)
}
fillUserList
();
}
void
SBBS_User_ListFrame
::
OnUserListItemRClick
(
wxListEvent
&
event
)
{
PopupMenu
(
&
ContextMenu
);
}
void
SBBS_User_ListFrame
::
CopyItems
(
int
state
)
{
long
item
=
UserList
->
GetNextItem
(
-
1
,
wxLIST_NEXT_ALL
,
state
);
int
cols
=
UserList
->
GetColumnCount
();
int
rows
=
UserList
->
GetSelectedItemCount
();
wxString
cp
;
wxListItem
li
;
for
(;;)
{
for
(
int
i
=
0
;
i
<
cols
;
i
++
)
{
li
.
m_itemId
=
item
;
li
.
m_col
=
i
;
if
(
UserList
->
GetItem
(
li
))
cp
+=
li
.
m_text
;
if
(
i
<
(
cols
-
1
))
cp
+=
_T
(
"
\t
"
);
}
item
=
UserList
->
GetNextItem
(
item
,
wxLIST_NEXT_ALL
,
state
);
if
(
item
==-
1
)
break
;
else
cp
+=
_T
(
"
\r\n
"
);
}
if
(
wxTheClipboard
->
Open
())
{
wxTheClipboard
->
SetData
(
new
wxTextDataObject
(
cp
));
wxTheClipboard
->
Close
();
}
}
void
SBBS_User_ListFrame
::
CopyMenuItemSelected
(
wxCommandEvent
&
event
)
{
CopyItems
(
wxLIST_STATE_SELECTED
);
}
void
SBBS_User_ListFrame
::
CopyAllMenuItemSelected
(
wxCommandEvent
&
event
)
{
CopyItems
(
wxLIST_STATE_DONTCARE
);
}
This diff is collapsed.
Click to expand it.
src/sbbs3/userlist/SBBS_User_ListMain.h
+
14
−
0
View file @
5ef5c0bf
...
...
@@ -44,8 +44,13 @@ class SBBS_User_ListFrame: public wxFrame
void
OnClearButtonClick
(
wxCommandEvent
&
event
);
void
OnUserListItemSelect
(
wxListEvent
&
event
);
void
OnQVChoiceSelect
(
wxCommandEvent
&
event
);
void
OnUserListItemRClick
(
wxListEvent
&
event
);
void
CopyMenuItemSelected
(
wxCommandEvent
&
event
);
void
CopyAllMenuItemSelected
(
wxCommandEvent
&
event
);
//*)
void
CopyItems
(
int
state
);
//(*Identifiers(SBBS_User_ListFrame)
static
const
long
ID_STATICTEXT1
;
static
const
long
ID_ARSTEXTCTRL
;
...
...
@@ -59,15 +64,24 @@ class SBBS_User_ListFrame: public wxFrame
static
const
long
idMenuQuit
;
static
const
long
idMenuAbout
;
static
const
long
ID_STATUSBAR1
;
static
const
long
ID_EDITUSER
;
static
const
long
ID_COPY
;
static
const
long
ID_COPYALL
;
static
const
long
ID_REFRESH
;
//*)
//(*Declarations(SBBS_User_ListFrame)
wxButton
*
RefreshButton
;
wxMenuItem
*
MenuItem5
;
wxStaticText
*
StaticText2
;
wxMenuItem
*
MenuItem4
;
wxPanel
*
Panel1
;
wxStaticText
*
StaticText1
;
wxMenu
ContextMenu
;
wxListCtrl
*
UserList
;
wxMenuItem
*
MenuItem3
;
wxStatusBar
*
StatusBar1
;
wxMenuItem
*
MenuItem6
;
wxButton
*
ClearButton
;
wxChoice
*
QVChoice
;
wxButton
*
EditButton
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment