• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2006, 2007 Apple Inc.
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public License
15  * along with this library; see the file COPYING.LIB.  If not, write to
16  * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17  * Boston, MA 02110-1301, USA.
18  *
19  */
20 
21 #ifndef RenderFileUploadControl_h
22 #define RenderFileUploadControl_h
23 
24 #include "FileChooser.h"
25 #include "RenderBlock.h"
26 
27 namespace WebCore {
28 
29 class HTMLInputElement;
30 
31 // Each RenderFileUploadControl contains a RenderButton (for opening the file chooser), and
32 // sufficient space to draw a file icon and filename. The RenderButton has a shadow node
33 // associated with it to receive click/hover events.
34 
35 class RenderFileUploadControl : public RenderBlock, private FileChooserClient {
36 public:
37     RenderFileUploadControl(HTMLInputElement*);
38     ~RenderFileUploadControl();
39 
renderName()40     virtual const char* renderName() const { return "RenderFileUploadControl"; }
41 
42     virtual void updateFromElement();
43     virtual void calcPrefWidths();
44     virtual void paintObject(PaintInfo&, int tx, int ty);
45 
46     void click();
47 
48     void valueChanged();
49 
50     void receiveDroppedFiles(const Vector<String>&);
51 
52     String buttonValue();
53     String fileTextValue();
54 
55     bool allowsMultipleFiles();
56 
57 protected:
58     virtual void styleDidChange(RenderStyle::Diff, const RenderStyle* oldStyle);
59 
60 private:
61     int maxFilenameWidth() const;
62     PassRefPtr<RenderStyle> createButtonStyle(const RenderStyle* parentStyle) const;
63 
64     RefPtr<HTMLInputElement> m_button;
65     RefPtr<FileChooser> m_fileChooser;
66 };
67 
68 } // namespace WebCore
69 
70 #endif // RenderFileUploadControl_h
71