summaryrefslogtreecommitdiff
path: root/ui/search.h
blob: 1c26ea78a6ec43c0100bb20f677761bac8033300 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// **************************************************************************
// * This file is part of the FreeFileSync project. It is distributed under *
// * GNU General Public License: http://www.gnu.org/licenses/gpl.html       *
// * Copyright (C) ZenJu (zhnmju123 AT gmx DOT de) - All Rights Reserved    *
// **************************************************************************

#ifndef SEARCH_H_INCLUDED
#define SEARCH_H_INCLUDED

#include <wx+/grid.h>

namespace zen
{
void startFind(wxWindow& parentWindow, Grid& grid, size_t compPosLeft, size_t compPosRight, bool& respectCase); //Strg + F
void findNext( wxWindow& parentWindow, Grid& grid, size_t compPosLeft, size_t compPosRight, bool& respectCase); //F3
}

#endif // SEARCH_H_INCLUDED
bgstack15