libyui-ncurses-pkg  2.48.9
NCPkgMenuFilter.h
1 /****************************************************************************
2 |
3 | Copyright (c) [2002-2011] Novell, Inc.
4 | All Rights Reserved.
5 |
6 | This program is free software; you can redistribute it and/or
7 | modify it under the terms of version 2 of the GNU General Public License as
8 | published by the Free Software Foundation.
9 |
10 | This program is distributed in the hope that it will be useful,
11 | but WITHOUT ANY WARRANTY; without even the implied warranty of
12 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 | GNU General Public License for more details.
14 |
15 | You should have received a copy of the GNU General Public License
16 | along with this program; if not, contact Novell, Inc.
17 |
18 | To contact Novell about this file by physical or electronic mail,
19 | you may find current contact information at www.novell.com
20 |
21 |***************************************************************************/
22 
23 
24 /*---------------------------------------------------------------------\
25 | |
26 | __ __ ____ _____ ____ |
27 | \ \ / /_ _/ ___|_ _|___ \ |
28 | \ V / _` \___ \ | | __) | |
29 | | | (_| |___) || | / __/ |
30 | |_|\__,_|____/ |_| |_____| |
31 | |
32 | core system |
33 | (C) SuSE GmbH |
34 \----------------------------------------------------------------------/
35 
36  File: NCPkgMenuFilter.cc
37 
38  Author: Gabriele Mohr <gs@suse.de>
39 
40 /-*/
41 #ifndef NCPkgMenuFilter_h
42 #define NCPkgMenuFilter_h
43 
44 #include <string>
45 
46 #include <YReplacePoint.h>
47 #include <YWidget.h>
48 #include "NCurses.h"
49 #include "NCi18n.h"
50 #include "NCMenuButton.h"
51 #include "NCPkgPatchSearch.h"
52 
53 class NCPackageSelector;
54 
55 #include "NCZypp.h"
56 
57 class NCPkgMenuFilter : public NCMenuButton {
58 
59 public:
60  enum PatchFilter
61  {
62  F_Needed,
63  F_Unneeded,
64  F_All,
65  F_Recommended,
66  F_Security,
67  F_Optional,
68  F_Unknown
69  };
70 
71  NCPkgMenuFilter & operator=( const NCPkgMenuFilter & );
72  NCPkgMenuFilter ( const NCPkgMenuFilter & );
73 
74 private:
75  NCPackageSelector *pkg;
76 
77  NCPkgPatchSearch *searchPopup;
78 
79  YItemCollection items;
80 
81  YMenuItem *needed;
82  YMenuItem *unneeded;
83  YMenuItem *allPatches;
84  YMenuItem *recommended;
85  YMenuItem *security;
86  YMenuItem *optional;
87  YMenuItem *search;
88 
89 public:
90 
91  NCPkgMenuFilter (YWidget *parent, std::string label, NCPackageSelector *pkger);
92  virtual ~NCPkgMenuFilter();
93 
94  void createLayout();
95 
96  bool handleEvent (const NCursesEvent & event);
97 
98 };
99 
100 #endif