1 #pragma once
2 
3 namespace lib
4 {
5 	/**
6 	 * How to resize columns in lists
7 	 */
8 	enum resize_mode
9 	{
10 		/**
11 		 * Resize to fit current size
12 		 */
13 		resize_auto,
14 		/**
15 		 * Resize to fit current content
16 		 */
17 		resize_fit_content,
18 		/**
19 		 * No automatic resizing
20 		 */
21 		resize_custom,
22 	};
23 }